19 lines
431 B
VimL
19 lines
431 B
VimL
" Vim
|
|
" Other IDEs
|
|
" Python
|
|
" Java
|
|
" Git
|
|
" Stack & Haskell
|
|
" CMake
|
|
" Non-text files
|
|
let NERDTreeIgnore = [
|
|
\ '^\.vim$',
|
|
\ '^\.vscode$', '.*\.code-workspace$', '^\.idea$',
|
|
\ '^__pycache__$', '^\.pytest_cache$', '^venv$', '\.egg-info$', '^dist$', '^build$', '^\.eggs$',
|
|
\ '^out$',
|
|
\ '^\.git$',
|
|
\ '^\.stack-work$', '\.lock$',
|
|
\ '^CMakeFiles$', '^CMakeCache.txt$',
|
|
\ '.pdf$']
|
|
let NERDTreeShowHidden = 1
|