diff options
Diffstat (limited to 'Common/nvim/lua/basic.lua')
-rwxr-xr-x | Common/nvim/lua/basic.lua | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Common/nvim/lua/basic.lua b/Common/nvim/lua/basic.lua index ca59d1c..ab3a9c7 100755 --- a/Common/nvim/lua/basic.lua +++ b/Common/nvim/lua/basic.lua @@ -24,9 +24,20 @@ vim.api.nvim_create_user_command( ) -- Disable the auto line wrap --- vim.cmd [[ set formatoptions-=t ]] vim.opt.formatoptions:remove("t") +-- Make find more usefull +vim.opt.path:append("**") + +-- Turn off netrw banner +vim.g.netrw_banner = 0 +-- Tree style listing in netrw +vim.g.netrw_liststyle = 3 +-- Make browse set split +-- vim.g.netrw_browse_split = 4 +-- Split to the right, instead of to the left +-- vim.g.netrw_altv = 1 + --[[ VIM User interface --]] |