NERDTree - Hide Python cache directories

This commit is contained in:
Emmanuel BENOîT 2020-12-15 10:33:37 +01:00
parent 2f374cc6cd
commit eb6e32d62d

View file

@ -8,5 +8,8 @@ autocmd VimEnter * if argc() == 0 && &columns > 150 | NERDTree | endif
" Set the bookmarks file's path
let g:NERDTreeBookmarksFile = GetVardataPath( 'NTBookmarks' )
" Hide Python cache directories
let g:NERDTreeIgnore=['^__pycache__$']
" Hide the sign column
autocmd FileType nerdtree setlocal signcolumn=no