Compare commits

...

2 Commits

Author SHA1 Message Date
cdaa225479 Use signcolumn=yes when available 2018-04-15 15:24:04 +01:00
097646072d Update ignore file 2018-04-15 15:21:57 +01:00
2 changed files with 6 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
.netrwhist
plugs/*
bundle/*

6
vimrc
View File

@ -70,7 +70,11 @@ hi link ALEWarningSign SyntasticWarningSign
" git diff in the sign column
Plug 'airblade/vim-gitgutter'
let g:gitgutter_sign_column_always = 1
if has('signs')
set signcolumn=yes
else
let g:gitgutter_sign_column_always = 1
endif
if has('python')
" format.vim - format with text objects