Emmanuel BENOîT
be99bfda32
Don't load plugins based on keyboard shortcuts, as this conflicts with vim-which-key. Instead, create shortcuts when plugins are declared, and load them when the commands they provide are used.
11 lines
316 B
VimL
11 lines
316 B
VimL
" NERDTree: ' e' = toggle side bar
|
|
let g:NERDTreeGitStatusUpdateOnWrite = 1
|
|
|
|
" 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
|