Add vim-gitgutter plugin

This commit is contained in:
Kenneth Benzie 2016-11-10 11:04:56 +00:00
parent 867d1523b1
commit 0caa3ed8f6

4
vimrc
View File

@ -44,6 +44,10 @@ let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0 let g:syntastic_check_on_wq = 0
let g:syntastic_python_checkers = ['pylint'] let g:syntastic_python_checkers = ['pylint']
" git diff in the sign column
Plug 'airblade/vim-gitgutter'
let g:gitgutter_sign_column_always = 1
if has('python') if has('python')
" format.vim - format with text objects " format.vim - format with text objects
if isdirectory(expand('~/Sandbox/format')) if isdirectory(expand('~/Sandbox/format'))