From 504a05c23323e193413ff468ff599cca32ec6e17 Mon Sep 17 00:00:00 2001 From: Guillaume DOTT Date: Wed, 6 Mar 2013 13:38:49 +0100 Subject: [PATCH] vim: add gitgutter and fugitive plugins --- vim/vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index c9319e1..77c49d3 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -28,6 +28,9 @@ if filereadable(expand("$HOME/.vim/bundle/vundle/README.md")) Bundle 'Lokaltog/vim-easymotion' Bundle 'ton/vim-bufsurf' + Bundle 'airblade/vim-gitgutter' + Bundle 'tpope/vim-fugitive' + Bundle 'Gundo' Bundle 'The-NERD-tree' Bundle 'The-NERD-Commenter' @@ -231,6 +234,8 @@ endfunc " MISC " { +" Required for vim-gitgutter signcolumn +highlight clear SignColumn " Every spaces/tabs at the end of line will be highlighted. au BufWinEnter * let w:m2=matchadd('ErrorMsg', '\s\+$', -1) " autocmd BufWrite * silent! %s/[\r \t]\+$//