diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-27 22:17:45 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-27 22:17:45 +0100 |
commit | 34cea963ffa733345f5c0fb3718a89eb59dd37f9 (patch) | |
tree | ef0f23e45ec6434d53053df52415102a267be64d /Common/nvim | |
parent | 09376c1e359ed257f1f31811dea1fe93a2bda617 (diff) | |
download | dotfiles-34cea963ffa733345f5c0fb3718a89eb59dd37f9.tar.gz dotfiles-34cea963ffa733345f5c0fb3718a89eb59dd37f9.zip |
Cleanup
Diffstat (limited to 'Common/nvim')
-rwxr-xr-x | Common/nvim/lua/basic.lua | 4 | ||||
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Common/nvim/lua/basic.lua b/Common/nvim/lua/basic.lua index 82c0194..9e40930 100755 --- a/Common/nvim/lua/basic.lua +++ b/Common/nvim/lua/basic.lua @@ -43,7 +43,7 @@ VIM User interface --]] -- Set 3 lines to the cursor - when moving vertically using j/k -vim.opt.so = 3 +-- vim.opt.so = 3 -- set WildMenu --vim.opt.wildmenu = true @@ -56,7 +56,7 @@ vim.opt.wildignore:append('*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store') --vim.opt.ruler = true -- Hide buffers when they are abandoned -vim.opt.hid = true +-- vim.opt.hid = true -- Make backspace function normally vim.opt.backspace = 'eol,start,indent' diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index b08c2af..2866731 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -17,7 +17,7 @@ return require('packer').startup(function(use) -- Packer itself :) use 'wbthomason/packer.nvim' - -- GitSigns + -- Git plugins use { 'lewis6991/gitsigns.nvim', config = function() |