make nvim-tree show all hidden, ignored, etc...

This commit is contained in:
Szwendacz99 2022-11-27 17:07:30 +01:00
parent 0c88b19013
commit 7d6c56b5e5

View file

@ -293,10 +293,8 @@ require("nvim-tree").setup({
show_on_dirs = true, show_on_dirs = true,
}, },
filters = { filters = {
custom = { custom = {},
"^.git$", dotfiles = false,
"^.mypy_cache$",
},
}, },
actions = { actions = {
change_dir = { change_dir = {
@ -323,6 +321,12 @@ require("nvim-tree").setup({
watcher = false, watcher = false,
}, },
}, },
git = {
enable = true,
ignore = false,
show_on_dirs = true,
timeout = 400,
},
}) })
--Gruvbox theme settings --Gruvbox theme settings