From 4a232e0540b4556486d644f694a21e83f2397ecd Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 7 Apr 2014 10:20:47 -0400 Subject: [PATCH] Added more consistent signs to gitgutter and tweaked the theme a touch --- vim/colors/darkcloud.vim | 4 ++-- vim/config/plugins.vim | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/vim/colors/darkcloud.vim b/vim/colors/darkcloud.vim index e2d50f5..89183bd 100644 --- a/vim/colors/darkcloud.vim +++ b/vim/colors/darkcloud.vim @@ -321,7 +321,7 @@ call s:X("WildMenu","#808080","#303030","","White",s:termBlack) "folding call s:X("Folded","#87d7ff","#4e4e4e","bold","Blue",s:termBlack) call s:X("FoldColumn","#87d7ff","","bold","Blue","") -call s:X("SignColumn","#ffaf00","","bold","Red","") +call s:X("SignColumn","#ffd787","","bold","Red","") hi! link ColorColumn SignColumn "syntax style @@ -365,7 +365,7 @@ hi! link gitconfigAssignment Label call s:X("GitGutterAdd","#ffd787","","bold","","Yellow") call s:X("GitGutterDelete","#d75f5f","","bold","","Red") call s:X("GitGutterChange","#87d7ff","","bold","","Blue") -call s:X("GitGutterChangeDelete","#87d7ff","","bold","","Blue") +hi! link GitGutterChangeDelete GitGutterChange "html call s:X("htmlTitle","#ffffff","","underline,bold","White","") diff --git a/vim/config/plugins.vim b/vim/config/plugins.vim index e44614a..b23db82 100644 --- a/vim/config/plugins.vim +++ b/vim/config/plugins.vim @@ -29,7 +29,9 @@ "}}} "GITGUTTER: {{{ - let g:gitgutter_sign_removed = '-' + let g:gitgutter_sign_added = '++' + let g:gitgutter_sign_removed = '--' + let g:gitgutter_sign_modified = '~~' let g:gitgutter_sign_modified_removed = '~-' "}}}