Skip to content

Commit eb64ca3

Browse files
authored
Merge pull request #50 from shunsock/2025-01-25
make dotfiles editable with nvim
2 parents 66d8931 + 94416cb commit eb64ca3

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

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)