diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/vimrc | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -11,7 +11,6 @@ set history=50 " keep 50 lines of command line history set ignorecase " Do case insensitive matching set smartcase " Ignore case only when doing a lowercase search set incsearch " Incremental search -set laststatus=2 " always have status bar set linebreak " This displays long lines as wrapped at word boundries set matchtime=10 " Time to flash the brack with showmatch set nobackup " Don't keep a backup file @@ -29,6 +28,14 @@ set wildmode=list:longest,full set nomousehide set sessionoptions+=resize,winpos +" Status Line Settings +set laststatus=2 " always have status bar +set statusline= +set statusline+=%n\ +set statusline+=%<%f\ %h%m%r +set statusline+=%= +set statusline+=%-14.(%l,%c%V%)\ %P + " filetypes filetype plugin on filetype indent on |