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,
},
filters = {
custom = {
"^.git$",
"^.mypy_cache$",
},
custom = {},
dotfiles = false,
},
actions = {
change_dir = {
@ -323,6 +321,12 @@ require("nvim-tree").setup({
watcher = false,
},
},
git = {
enable = true,
ignore = false,
show_on_dirs = true,
timeout = 400,
},
})
--Gruvbox theme settings