summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-11-16 23:06:48 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-11-16 23:06:48 +0100
commit56556a10b09f5c120bcede44d576e5715026c63c (patch)
tree49928e1a54e81177d9c3ef2d428345131259e866 /.config
parent0a7365d6fc4d87790d791449dc650b6d88e75acf (diff)
nvim: Move netrw config to its own file
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/after/plugin/netrw.vim13
-rw-r--r--.config/nvim/lua/mango/set.lua7
2 files changed, 13 insertions, 7 deletions
diff --git a/.config/nvim/after/plugin/netrw.vim b/.config/nvim/after/plugin/netrw.vim
new file mode 100644
index 0000000..f9e0f9a
--- /dev/null
+++ b/.config/nvim/after/plugin/netrw.vim
@@ -0,0 +1,13 @@
+function! s:gitignore_files()
+ silent! !git rev-parse --is-inside-work-tree
+ if v:shell_error == 0
+ return netrw_gitignore#Hide()
+ endif
+ return '^$' " Shouldn’t match anything
+endfunction
+
+let g:netrw_banner = 0
+let g:netrw_bufsettings = 'noma nomod nu nobl nowrap ro' " Enables line-numbers
+let g:netrw_list_hide = s:gitignore_files()
+ \ .. ',^\(\.\|\.\.\)/\?$'
+ \ .. ',.*\.o$'
diff --git a/.config/nvim/lua/mango/set.lua b/.config/nvim/lua/mango/set.lua
index 2dfe53b..7d024a6 100644
--- a/.config/nvim/lua/mango/set.lua
+++ b/.config/nvim/lua/mango/set.lua
@@ -59,14 +59,7 @@ vim.cmd([[
endfunction
]])
--- This has to be done to enable linenumbers in netrw
-g.netrw_bufsettings = 'noma nomod nu nobl nowrap ro'
-
-- Allow for jumping between these pairs with %
o.matchpairs:append('<:>')
o.matchpairs:append('‘:’')
o.matchpairs:append('“:”')
-
--- Disable the netrw banner
-g.netrw_banner = 0
-g.netrw_list_hide = [[^\(\.\|\.\.\)/\?$]]