diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2018-06-05 10:16:49 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2018-06-05 10:16:49 -0700 |
commit | 6f039174a57e3e54a96c0b03c34494c210eebfd3 (patch) | |
tree | 78722d0e81aba2df77d0f07ba748b55cffe208b6 /vimrc | |
parent | [bash] and back .. (diff) | |
download | emacs.d-6f039174a57e3e54a96c0b03c34494c210eebfd3.tar.gz |
[vim] Add vim-airline for now
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vimrc b/vimrc index 8f0d1bf..a023e42 100644 --- a/vimrc +++ b/vimrc @@ -4,7 +4,6 @@ scriptencoding utf-8 set ttyfast " assume fast terminal and send more chars for smooth redraw set lazyredraw " don't redraw while executing macros, register and cmds -let &statusline = '[%n] %<%F %m%r%w%y %= (%l,%c) %P of %L' set laststatus=2 " every window gets a statusline, always(=2) set scrolloff=5 " scroll edge offset (to keep some context) set shortmess=a " abbreviate all(=a) messages when possible @@ -32,6 +31,9 @@ Plug 'mileszs/ack.vim' Plug 'plasticboy/vim-markdown' +Plug 'vim-airline/vim-airline' +Plug 'vim-airline/vim-airline-themes' + call plug#end() " configure ack.vim to use silver surfer |