blob: 2b35834213322175907f4f2e6f2d26c4d19898a5 (
plain)
1
2
3
4
5
6
7
8
|
autocmd FileType html,css EmmetInstall
" Start NERDTree when Vim is started without file arguments.
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists('s:std_in') | NERDTree | endif
" Close the tab if NERDTree is the only window remaining in it.
autocmd BufEnter * if winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
|