fix: close nerdtree if nerdtree is the last open buffer
This commit is contained in:
parent
f7f70a83e2
commit
ee6a23d5a0
48
vimrc
48
vimrc
@ -2,41 +2,45 @@
|
|||||||
call pathogen#infect()
|
call pathogen#infect()
|
||||||
|
|
||||||
" Autocmd
|
" Autocmd
|
||||||
autocmd BufWritePre * %s/\s\+$//e " delete deprecated dots at very end of a line
|
autocmd BufWritePre * %s/\s\+$//e " delete deprecated dots at very end of a line
|
||||||
autocmd Filetype make setlocal noexpandtab " use tabs in make files instead whitespaces
|
autocmd Filetype make setlocal noexpandtab " use tabs in make files instead whitespaces
|
||||||
autocmd BufNewFile,BufRead rsnapshot.conf setlocal noexpandtab " use tabs in rsnapshot.conf files instead whitespaces
|
autocmd BufNewFile,BufRead rsnapshot.conf setlocal noexpandtab " use tabs in rsnapshot.conf files instead whitespaces
|
||||||
autocmd vimenter * NERDTree " AutoStart nerdtree
|
autocmd vimenter * NERDTree " AutoStart nerdtree
|
||||||
|
|
||||||
|
" Close NerdTree, if NerdTree is the last open buffer
|
||||||
|
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
|
||||||
|
|
||||||
|
|
||||||
" Key values
|
" Key values
|
||||||
" Can do almost everything that set can do, plus more.
|
" Can do almost everything that set can do, plus more.
|
||||||
" It can assign a value to
|
" It can assign a value to
|
||||||
let g:solarized_termcolors=256 " enable 256bit map for solarized colorschema
|
let g:solarized_termcolors=256 " enable 256bit map for solarized colorschema
|
||||||
let NERDTreeAutoDeleteBuffer=1 " automatically delete the buffer of the file, if I delete it with NerdTree
|
let NERDTreeAutoDeleteBuffer=1 " automatically delete the buffer of the file, if I delete it with NerdTree
|
||||||
let NERDTreeMinimalUI=1 " disable help informations in NerdTree
|
let NERDTreeMinimalUI=1 " disable help informations in NerdTree
|
||||||
let NERDTreeDirArrows=1 " display dir arrows in NerdTree
|
let NERDTreeDirArrows=1 " display dir arrows in NerdTree
|
||||||
|
|
||||||
" Set options
|
" Set options
|
||||||
" Only works with options
|
" Only works with options
|
||||||
set autoindent " automatically indents text
|
set autoindent " automatically indents text
|
||||||
set background=dark
|
set background=dark
|
||||||
set encoding=utf-8 " file encoding
|
set encoding=utf-8 " file encoding
|
||||||
set expandtab
|
set expandtab
|
||||||
set fileformat=unix " use unix fileformat (LCR)
|
set fileformat=unix " use unix fileformat (LCR)
|
||||||
set list listchars=tab:»·,trail:· " display dots for identicate tabspaces
|
set list listchars=tab:»·,trail:· " display dots for identicate tabspaces
|
||||||
set mouse=v " support mouse in visual mode
|
set mouse=v " support mouse in visual mode
|
||||||
set nobackup " no backup files
|
set nobackup " no backup files
|
||||||
set noswapfile " no swap files
|
set noswapfile " no swap files
|
||||||
set nowritebackup " only in case you don't want a backup file while editing
|
set nowritebackup " only in case you don't want a backup file while editing
|
||||||
set rnu " show row numbers
|
set rnu " show row numbers
|
||||||
set statusline=%{fugitive#statusline()} " config my own statusline
|
set statusline=%{fugitive#statusline()} " config my own statusline
|
||||||
set shiftwidth=2
|
set shiftwidth=2
|
||||||
set smarttab
|
set smarttab
|
||||||
set tabstop=2
|
set tabstop=2
|
||||||
set wildmenu
|
set wildmenu
|
||||||
set wildmode=longest,list,full " autocompleteion bash
|
set wildmode=longest,list,full " autocompleteion bash
|
||||||
|
|
||||||
" Other
|
" Other
|
||||||
colorscheme solarized " colorschema
|
colorscheme solarized " colorschema
|
||||||
scriptencoding utf-8 " script encoding
|
scriptencoding utf-8 " script encoding
|
||||||
syntax enable " enable syntaxhighlighting
|
syntax enable " enable syntaxhighlighting
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user