[neovim] Show hidden files except .git in neo-tree

This commit is contained in:
Daniel Carrillo 2022-11-01 18:15:38 +01:00
parent 5a13d12e33
commit 94cc9ace87
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
1 changed files with 2 additions and 1 deletions

View File

@ -42,10 +42,11 @@ neotree.setup({
filesystem = {
filtered_items = {
visible = false,
hide_dotfiles = true,
hide_dotfiles = false,
hide_gitignored = false,
hide_by_name = {
"__pycache__",
".git",
},
},
follow_current_file = true,