diff options
-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 |