diff options
Diffstat (limited to 'Common/nvim/lua/basic.lua')
-rwxr-xr-x | Common/nvim/lua/basic.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Common/nvim/lua/basic.lua b/Common/nvim/lua/basic.lua index a5aec23..0e030ec 100755 --- a/Common/nvim/lua/basic.lua +++ b/Common/nvim/lua/basic.lua @@ -33,11 +33,11 @@ vim.api.nvim_create_user_command( VIM User interface --]] --- Set 7 lines to the cursor - when moving vertically using j/k -vim.opt.so = 7 +-- Set 3 lines to the cursor - when moving vertically using j/k +vim.opt.so = 3 -- set WildMenu -vim.opt.wildmenu = true +--vim.opt.wildmenu = true -- Ignore compiled files vim.opt.wildignore = '*.o,*~,*.pyc' |