aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2023-10-20 20:07:29 +0200
committerMax Christian Pohle2023-10-20 20:07:29 +0200
commit3efb1546b256c620da3ea70c8c717e55cce0b3b2 (patch)
tree0d19c42338977db70d8f0643f384b55c56213eaf
parentbb61c6f72c569dce81a619bf601524b8e627dfd2 (diff)
downloadvim-3efb1546b256c620da3ea70c8c717e55cce0b3b2.tar.bz2
vim-3efb1546b256c620da3ea70c8c717e55cce0b3b2.zip
Final housekeeping round
-rw-r--r--init.lua2
-rw-r--r--plugin/netrw.vim2
2 files changed, 3 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index e2fec46..bbc9f05 100644
--- a/init.lua
+++ b/init.lua
@@ -7,6 +7,8 @@ if vim.fn.has("win32") then
7 vim.opt.rtp:append(vim.fn.expand("$HOME\\scoop\\shims")) 7 vim.opt.rtp:append(vim.fn.expand("$HOME\\scoop\\shims"))
8end 8end
9 9
10vim.opt.runtimepath:remove("/usr/share/vim/vimfiles")
11
10-- vim.o.shadafile = "/tmp/shada" 12-- vim.o.shadafile = "/tmp/shada"
11 13
12-- only on Linux... 14-- only on Linux...
diff --git a/plugin/netrw.vim b/plugin/netrw.vim
index 3619070..57d6d50 100644
--- a/plugin/netrw.vim
+++ b/plugin/netrw.vim
@@ -12,5 +12,5 @@ augroup NETRW
12 let g:netrw_liststyle = 3 | " 3=tree 12 let g:netrw_liststyle = 3 | " 3=tree
13 let g:netrw_preview = 0 | " 13 let g:netrw_preview = 0 | "
14 let g:netrw_winsize = 20 | " window size in percent 14 let g:netrw_winsize = 20 | " window size in percent
15 let s:treedepthstring = "│ " 15 " let s:treedepthstring = "│ " | " this is not going to work, but left here for documentation
16augroup END 16augroup END
..