Skip to content

Commit 94416cb

Browse files
committed
make dotfiles editable with nvim
1 parent 66d8931 commit 94416cb

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Diff for: configs/nvim/lua/config/plugins/tree.lua

+7-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,15 @@ require('nvim-tree').setup({
3131
},
3232
},
3333
filters = {
34+
-- hide dotfiles by default
3435
dotfiles = true,
3536
},
37+
git = {
38+
enable = true,
39+
ignore = false,
40+
timeout = 500,
41+
},
3642
})
3743

38-
3944
-- start neovim with open nvim-tree
40-
require("nvim-tree.api").tree.toggle(false, true)
45+
require("nvim-tree.api").tree.toggle(false, true)

0 commit comments

Comments
 (0)