plugins - Added NERDTree

This commit is contained in:
Emmanuel BENOîT 2023-06-18 11:50:16 +02:00
parent 1bc2b6acb4
commit 6a4f86b634
No known key found for this signature in database
GPG key ID: 2356DC6956CF54EF
4 changed files with 10 additions and 4 deletions

12
plugins/nerdtree.cfg.vim Normal file
View file

@ -0,0 +1,12 @@
" NERDTree: ' e' = toggle side bar
let g:NERDTreeGitStatusUpdateOnWrite = 1
nnoremap <Leader>e :NERDTreeToggle<CR>
" 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