This question concerns telescope in vim. I can see any info as to the type of regex being used.
With the following setting I can achieve to ignore node_modules only if I start the explorer at the root level where node_modules exist.
telescope.nvim.vim
lua << EOF
require('telescope').setup{
...
file_ignore_patterns = {"node_modules"},
...
}
EOF
How can I achieve the outcome where node_modules is ignored recursively - so ignore any deeply nested node_modules. "node_modules/*" is not working. Unless I can make telescope respect .gitignore would also be a solution.
Thank you in advance for helping.
I know this seems late, but the probs in your config is,
file_ignore_patterns
should be defined indefaults
objects, like this