make nvim-tree show all hidden, ignored, etc...
This commit is contained in:
parent
0c88b19013
commit
7d6c56b5e5
1 changed files with 8 additions and 4 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue