From 6b0bdfa63bdfb1464db36162390a35da9792cb14 Mon Sep 17 00:00:00 2001 From: "jakob.stendahl" Date: Wed, 7 Feb 2024 21:45:39 +0100 Subject: Remove some plugins --- Common/nvim/lua/basic.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'Common/nvim/lua/basic.lua') 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 --]] -- cgit v1.2.3