diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2016-12-23 22:58:06 -0600 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2016-12-23 23:10:46 -0600 |
commit | 611cb9c018a103f61d142019897bbfb5ada6dcf3 (patch) | |
tree | ab81168888206a8fa73f7cb2de910daa7441ecab /vim/.vimrc | |
parent | 8ffda4ecff0a2c93023d0e4fe4e079636d930571 (diff) |
vim: add airline status bar
Diffstat (limited to 'vim/.vimrc')
-rw-r--r-- | vim/.vimrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -24,6 +24,7 @@ set wildmenu " color settings set background=dark let g:gruvbox_contrast_dark='hard' +let g:airline_theme='cool' colorscheme gruvbox syntax on @@ -52,3 +53,7 @@ let g:ctrlp_map='<c-p>' "display fuzzy buffer search on ^P " align equals on 'a=', comma on 'a,' nnoremap a= :Tabularize /=<cr> nnoremap a, :Tabularize /,/r0l1<cr> + +" airline +" display status line even with no splits +set laststatus=2 |