diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-06-25 10:11:04 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2014-06-25 10:11:04 +0200 |
commit | 47f43d25d99dc8cf972496c8b36eadca59f72799 (patch) | |
tree | 00e68c356beeb935a7bc8e48f0048bbaea4e0e6d | |
parent | 77a122f0581d02845d8c7f0c1b889984a2627a35 (diff) |
colors: Add colors for vim-gitgutter
-rw-r--r-- | .vim/colors/solarized.vim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.vim/colors/solarized.vim b/.vim/colors/solarized.vim index 70f5223..b79d932 100644 --- a/.vim/colors/solarized.vim +++ b/.vim/colors/solarized.vim @@ -654,7 +654,7 @@ exe "hi! DiffDelete" .s:fmt_none .s:fg_red .s:bg_base02 exe "hi! DiffText" .s:fmt_none .s:fg_blue .s:bg_base02 .s:sp_blue endif endif -exe "hi! SignColumn" .s:fmt_none .s:fg_base0 +hi! link SignColumn LineNr exe "hi! Conceal" .s:fmt_none .s:fg_blue .s:bg_none exe "hi! SpellBad" .s:fmt_curl .s:fg_none .s:bg_none .s:sp_red exe "hi! SpellCap" .s:fmt_curl .s:fg_none .s:bg_none .s:sp_violet @@ -757,6 +757,11 @@ hi! link gitcommitUnmergedArrow gitcommitUnmergedFile "exe "hi! gitcommitOverflow" "exe "hi! gitcommitBlank" " }}} +" vim-gitgutter highlighting {{{ +exe "hi! lineAdded" .s:fmt_bold .s:fg_green .s:bg_base02 +exe "hi! lineModified" .s:fmt_bold .s:fg_yellow .s:bg_base02 +exe "hi! lineRemoved" .s:fmt_bold .s:fg_red .s:bg_base02 +" }}} " html highlighting "{{{ " --------------------------------------------------------------------- exe "hi! htmlTag" .s:fmt_none .s:fg_base01 .s:bg_none |