disabled autoloading of nerdtree in vim

This commit is contained in:
Johannes Findeisen 2015-07-11 01:16:55 +02:00
commit 53035ab612

4
.vimrc
View file

@ -3,8 +3,8 @@ execute pathogen#infect()
" Load NERDTree plugin only if opening vim without a file
"autocmd VimEnter * NERDTree
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
"autocmd StdinReadPre * let s:std_in=1
"autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
" Open NERDTree with Ctrl+n / Toggle
map <C-n> :NERDTreeToggle<CR>