vim-colors-solarized
vim-colors-solarized copied to clipboard
SignColumn highlighting could do with some lovin'
Solarized's default sign highlighting is a little harsh on the eyes: I see purple on white with background=dark
.
Adding s:bg_base02
was good enough for me:
diff --git a/colors/solarized.vim b/colors/solarized.vim
index 70f5223..0c78d59 100644
--- a/colors/solarized.vim
+++ b/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
+exe "hi! SignColumn" .s:fmt_none .s:fg_base0 .s:bg_base02
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
Thanks!
+1 This is particularly egregious when Solarized is used with @airblade's vim-gitgutter.
+1
:+1:
+1
+1 .s:bg_base02 works perfectly
+1 works great with vim-gitgutter
Works for me (vim-gitgutter author)!
:+1:
:+1:
:+1:
:+1:
:+1:
:+1:
Definitely +1 for me as well.