From 63f2b60a5fb930e13725a528c52a0ba63acc5ab2 Mon Sep 17 00:00:00 2001 From: qhuang Date: Sat, 15 Jun 2013 16:26:00 +0800 Subject: [PATCH] small modification move column setting to the last --- my_configs.vim | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/my_configs.vim b/my_configs.vim index e04b28b5..81212a35 100644 --- a/my_configs.vim +++ b/my_configs.vim @@ -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 d :cs find d =expand("") let g:miniBufExplMapCTabSwitchBufs = 1 let g:miniBufExplMapWindowNavVim = 1 let g:miniBufExplMapWindowNavArrows = 1 + +let tmpcolumn=$COLUMNS +execute "set columns=".tmpcolumn +