You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
499 B
VimL
19 lines
499 B
VimL
4 years ago
|
" Nerdtree settings
|
||
|
"
|
||
|
" Close all open buffers on entering a window if the only
|
||
|
" buffer that's left is the NERDTree buffer
|
||
|
function! s:CloseIfOnlyNerdTreeLeft()
|
||
|
if exists("t:NERDTreeBufName")
|
||
|
if bufwinnr(t:NERDTreeBufName) != -1
|
||
|
if winnr("$") == 1
|
||
|
q
|
||
|
endif
|
||
|
endif
|
||
|
endif
|
||
|
endfunction
|
||
|
|
||
|
let NERDTreeDirArrows=1
|
||
|
let NERDTreeIgnore = ['\.pyc$', '\.swp$']
|
||
|
map <leader>nt :NERDTreeToggle<CR>
|
||
|
autocmd WinEnter * call s:CloseIfOnlyNerdTreeLeft()
|