summaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-10-27 01:53:00 -0400
committerJesse Luehrs <doy@tozt.net>2013-10-27 04:31:59 -0400
commit369dc782c657d30a0cc4293b285aae379fa33c84 (patch)
tree242bf6957cc9b7984cc049b0f94ddd0814d679af /vimrc
parent9a90d48beba676d432ff2db0760507e6d5b77b56 (diff)
downloadconf-369dc782c657d30a0cc4293b285aae379fa33c84.tar.gz
conf-369dc782c657d30a0cc4293b285aae379fa33c84.zip
give airline a shot
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc15
1 files changed, 10 insertions, 5 deletions
diff --git a/vimrc b/vimrc
index 306ca33..964c2fe 100644
--- a/vimrc
+++ b/vimrc
@@ -42,6 +42,9 @@ set rulerformat=%26(%y%r%m\ (%n)\ %.7l,%.7c\ %=\ %P%)
" display the number of (characters|lines) in visual mode, also cur command
set showcmd
+" don't display the current mode, since airline does that
+set noshowmode
+
" a - terse messages (like [+] instead of [Modified]
" o - don't show both reading and writing messages if both occur at once
" t - truncate file names
@@ -50,8 +53,8 @@ set showcmd
" I - no intro message when starting vim fileless
set shortmess=aotTWI
-" no extra status lines
-set laststatus=0
+" status line
+set laststatus=2
" display as much of the last line as possible if it's really long
" also display unprintable characters as hex
@@ -243,9 +246,7 @@ if has("gui_running")
colorscheme torte
else
set background=light
- if &t_Co > 16
- set t_Co=16
- endif
+ set t_Co=256
endif
" }}}
" word completion menu {{{
@@ -725,4 +726,8 @@ function! s:vimfiler_my_settings()
endfunction
nmap c :VimFilerSimple -quit -explorer<CR>
" }}}
+" bufferline {{{
+let g:bufferline_echo = 0
+let g:bufferline_modified = ''
+" }}}
" }}}