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 | |
parent | 8ffda4ecff0a2c93023d0e4fe4e079636d930571 (diff) |
vim: add airline status bar
Diffstat (limited to 'vim')
m--------- | vim/.vim/bundle/vim-airline | 0 | ||||
m--------- | vim/.vim/bundle/vim-airline-themes | 0 | ||||
-rw-r--r-- | vim/.vimrc | 5 |
3 files changed, 5 insertions, 0 deletions
diff --git a/vim/.vim/bundle/vim-airline b/vim/.vim/bundle/vim-airline new file mode 160000 +Subproject e83ed2408878ddd3bedf07d563b3ec1139a8f5e diff --git a/vim/.vim/bundle/vim-airline-themes b/vim/.vim/bundle/vim-airline-themes new file mode 160000 +Subproject 2a97d9ee410d7b9980a7741fc6e705d53eea23c @@ -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 |