diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2012-11-19 14:08:21 -0800 |
---|---|---|
committer | Jesse Morgan <morganjm@amazon.com> | 2012-11-19 14:08:21 -0800 |
commit | 146268c112e7fda808670468b40a7322f04bc148 (patch) | |
tree | 3af05df503854d52367f006e430176d889402eed /base/vimrc | |
parent | 8d6a7a116fe2511ee53309069a30ece768a05abe (diff) |
Adding buffer number to status line.
Diffstat (limited to 'base/vimrc')
-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 |