diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-07 21:45:39 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-07 21:45:39 +0100 |
commit | 6b0bdfa63bdfb1464db36162390a35da9792cb14 (patch) | |
tree | d86662d0ffe658be6e136c4e6214ef0f5da8fa07 /Common/nvim/lua/basic.lua | |
parent | fefba1ba1f2d2bc919e40b1fcb2f520620ac8b07 (diff) | |
download | dotfiles-6b0bdfa63bdfb1464db36162390a35da9792cb14.tar.gz dotfiles-6b0bdfa63bdfb1464db36162390a35da9792cb14.zip |
Remove some plugins
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 --]] |