hide gitignored files on nvimtree | exclude
This commit is contained in:
parent
c74b049408
commit
21513e3b28
|
@ -45,6 +45,7 @@ g.nvim_tree_icons = {
|
||||||
local options = {
|
local options = {
|
||||||
filters = {
|
filters = {
|
||||||
dotfiles = false,
|
dotfiles = false,
|
||||||
|
exclude = { "custom" },
|
||||||
},
|
},
|
||||||
disable_netrw = true,
|
disable_netrw = true,
|
||||||
hijack_netrw = true,
|
hijack_netrw = true,
|
||||||
|
@ -64,7 +65,7 @@ local options = {
|
||||||
},
|
},
|
||||||
git = {
|
git = {
|
||||||
enable = false,
|
enable = false,
|
||||||
ignore = false,
|
ignore = true,
|
||||||
},
|
},
|
||||||
actions = {
|
actions = {
|
||||||
open_file = {
|
open_file = {
|
||||||
|
|
Loading…
Reference in New Issue