heavim/bundles-init/nerdtree.cfg.vim
Emmanuel BENOîT edd160a289 Don't call ReadBookmarks
It's unnecessary, plus it causes errors.
2015-03-14 14:21:20 +01:00

9 lines
355 B
VimL

" NERDTree: ' e' = toggle side bar
let g:NERDTreeUpdateOnWrite = 1
nnoremap <Leader>e :NERDTreeToggle<CR>
" Open automatically if there are more than 150 columns and no file was specified
autocmd VimEnter * if argc() == 0 && &columns > 150 | NERDTree | endif
" Set the bookmarks file's path
let g:NERDTreeBookmarksFile = GetVardataPath( 'NTBookmarks' )