summaryrefslogtreecommitdiff
path: root/base/vimrc
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2012-11-19 14:08:21 -0800
committerJesse Morgan <morganjm@amazon.com>2012-11-19 14:08:21 -0800
commit146268c112e7fda808670468b40a7322f04bc148 (patch)
tree3af05df503854d52367f006e430176d889402eed /base/vimrc
parent8d6a7a116fe2511ee53309069a30ece768a05abe (diff)
Adding buffer number to status line.
Diffstat (limited to 'base/vimrc')
-rw-r--r--base/vimrc9
1 files changed, 8 insertions, 1 deletions
diff --git a/base/vimrc b/base/vimrc
index aa25093..85f4f4e 100644
--- a/base/vimrc
+++ b/base/vimrc
@@ -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