From 903e2666a770ad7ea2a68f64c3806ce011b937bf Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Thu, 16 Nov 2023 18:26:23 +0100 Subject: [PATCH 1/3] added awesome vim-indent-object plugin --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index eb705f9..e5861e2 100644 --- a/init.lua +++ b/init.lua @@ -116,7 +116,7 @@ local function packer_startup(use) } use 'folke/zen-mode.nvim' -- For centering the text on screen giving a better editing experience in full-screen mode. - + use 'michaeljsmith/vim-indent-object' -- Treats lines of the same indentation as a new text object, access with i and I. if packer_bootstrap then --Comes after packages require('packer').sync() From e1e58b76476f3ace5d6766bd13708f69a8cd4dbd Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Thu, 30 Nov 2023 23:14:08 +0100 Subject: [PATCH 2/3] enabled script running on mac --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index e5861e2..d75a4b6 100644 --- a/init.lua +++ b/init.lua @@ -281,8 +281,8 @@ local function get_run_script_function(script_name) return function() ---@type "Linux" | "Darwin" | "Windows_NT" local os_name = vim.loop.os_uname().sysname - if os_name ~= "Linux" then - error('run_file not implemented for non-linux platforms') + if os_name == "Windows_NT" then + error('run_file not implemented for non-unix platforms') end local run_script_path = vim.fn.getcwd() .. "/" .. script_name From d397585d4e2e98a7c84395759fa76ce1b815c680 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Fri, 1 Dec 2023 15:43:06 +0100 Subject: [PATCH 3/3] Updated telescope to 0.1.4 --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index d75a4b6..b57fc3a 100644 --- a/init.lua +++ b/init.lua @@ -109,7 +109,7 @@ local function packer_startup(use) use {-- FuzzyFind your way through previously open files, or project files. 'nvim-telescope/telescope.nvim', - tag = '0.1.1', + tag = '0.1.4', requires = { {'nvim-lua/plenary.nvim'}, }