diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2018-06-05 15:54:40 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2018-06-05 15:54:40 -0700 |
commit | 668031eb959b91d6acbb86864623a82e2e29875a (patch) | |
tree | 0e4cb319f1339605941061fbc4aeae22470cede9 | |
parent | [emacs] Some cleanup for markdown. (diff) | |
download | emacs.d-668031eb959b91d6acbb86864623a82e2e29875a.tar.gz |
Revert "[vim] Add vim-airline for now"
This reverts commit 6f039174a57e3e54a96c0b03c34494c210eebfd3.
Diffstat (limited to '')
-rw-r--r-- | vimrc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/vimrc b/vimrc index a023e42..8f0d1bf 100644 --- a/vimrc +++ b/vimrc @@ -4,6 +4,7 @@ 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 @@ -31,9 +32,6 @@ 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 |