mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
30 lines
1.3 KiB
VimL
30 lines
1.3 KiB
VimL
" NERDTree config
|
|
map <C-n> :NERDTreeToggle<CR>
|
|
let g:NERDTreeDirArrowExpandable = '►'
|
|
let g:NERDTreeDirArrowCollapsible = '▼'
|
|
let NERDTreeShowLineNumbers=1
|
|
let NERDTreeShowHidden=1
|
|
let NERDTreeMinimalUI = 1
|
|
let g:NERDTreeWinSize=25
|
|
if empty($DISPLAY) " Disable devicons for nerdtree in TTY
|
|
let g:webdevicons_enable_nerdtree = 0
|
|
endif
|
|
|
|
" If a directory is specified, start NERDTree and move the cursor to its window.
|
|
autocmd StdinReadPre * let s:std_in=1
|
|
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists('s:std_in') |
|
|
\ execute 'NERDTree' argv()[0] | wincmd p | enew | execute 'cd '.argv()[0] |
|
|
\ endif
|
|
|
|
" If a file is specified, start NERDTree and keep the cursor in file window.
|
|
"autocmd VimEnter * if argc() > 0 && !isdirectory(argv()[0]) || exists("s:std_in") |
|
|
" \ execute 'NERDTree' fnamemodify(argv()[0], ':p:h') | wincmd p | endif
|
|
|
|
" Exit Vim if NERDTree is the only window left.
|
|
autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() |
|
|
\ quit | endif
|
|
|
|
" If another buffer tries to replace NerdTree, put it in another window, and bring back NerdTree.
|
|
autocmd BufEnter * if bufname('#') =~ 'NERD_tree_\d\+' && bufname('%') !~ 'NERD_tree_\d\+' && winnr('$') > 1 |
|
|
\ let buf=bufnr() | buffer# | execute "normal! \<C-W>w" | execute 'buffer'.buf | endif
|