Like in NERDTREE for vim, is there a way to list certain file types to be ignored (not displayed) by neotree ? for instance:
*.cs.meta
Like in NERDTREE for vim, is there a way to list certain file types to be ignored (not displayed) by neotree ? for instance:
*.cs.meta
Customize the variable neo-hidden-regexp-list
The doc-string is very short: "The regexp list matching hidden files."
The default is '("^\\." "\\.pyc$" "~$" "^#.*#$" "\\.elc$")
Modify the list as follows in your .emacs
file:
(setq neo-hidden-regexp-list '("^\\." "\\.cs\\.meta$" "\\.pyc$" "~$" "^#.*#$" "\\.elc$"))
neo-hidden-files-toggle
, by default bound tos
. – altschuler Dec 18 '17 at 11:56