diff options
-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 |