1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00

small modification move column setting to the last

This commit is contained in:
qhuang 2013-06-15 16:26:00 +08:00
parent bb0e373faa
commit 63f2b60a5f

View File

@ -4,20 +4,17 @@
set nu
" the color I used to
"colorscheme desert
colorscheme desert
" change current directory when switching files
set autochdir
let tmpcolumn=$COLUMNS
execute "set columns=".tmpcolumn
""""""""""""""""""""""""
" [my plugin setup]
"
" ctags
set tags=tags;
set tags+=~/.vim/systags
set tags+=~/.systags
" cscope
if has("cscope")
@ -54,3 +51,7 @@ nmap <C-@>d :cs find d <C-R>=expand("<cword>")<CR><CR>
let g:miniBufExplMapCTabSwitchBufs = 1
let g:miniBufExplMapWindowNavVim = 1
let g:miniBufExplMapWindowNavArrows = 1
let tmpcolumn=$COLUMNS
execute "set columns=".tmpcolumn