5

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
Running Turtle
  • 467
  • 1
  • 4
  • 7

1 Answers1

10

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$"))
lawlist
  • 19,106
  • 5
  • 38
  • 120