How about adding an option to exclude some files/directories based on a pattern to make them being hidden?
E.g.,
require("neo-tree").setup({
filesystem = {
filters = {
respect_gitignore = true,
exclude_pattern = { 'node-module', '.DS_Store' }
}
}
})
Thanks.