diff --git a/vim/colors/campo-dark-blue.vim b/vim/colors/campo-dark-blue.vim index 4854d27..0c3d1a6 100644 --- a/vim/colors/campo-dark-blue.vim +++ b/vim/colors/campo-dark-blue.vim @@ -26,6 +26,9 @@ if has('termguicolors') let s:selection = "546e8f" let s:window = "37474f" let s:line = "034a4a" + let s:color_column = "034a4a" " Vertical line set by colorcolumn option. + let s:cursor_line = "023940" " Horizontal line at the cursor. + let s:cursor_column = "023940" " Vertical line at the cursor. let s:active_tab_bg = s:background let s:active_tab_fg = s:text let s:inactive_tab_bg = s:line @@ -307,14 +310,14 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 call X("Folded", s:comment, s:background, "") call X("FoldColumn", s:comment, s:background, "") if version >= 700 - call X("CursorLine", "", s:line, "none") - call X("CursorColumn", "", s:line, "none") + call X("CursorLine", "", s:cursor_line, "none") + call X("CursorColumn", "", s:cursor_column, "none") call X("PMenu", s:foreground, s:selection, "none") call X("PMenuSel", s:foreground, s:selection, "reverse") call X("SignColumn", "", s:background, "none") end if version >= 703 - call X("ColorColumn", "", s:line, "none") + call X("ColorColumn", "", s:color_column, "none") end " Standard Highlighting diff --git a/vim/colors/campo-dark-greenish.vim b/vim/colors/campo-dark-greenish.vim index 264875a..d34c589 100644 --- a/vim/colors/campo-dark-greenish.vim +++ b/vim/colors/campo-dark-greenish.vim @@ -26,6 +26,9 @@ if has('termguicolors') let s:selection = "546e7a" let s:window = "37474f" let s:line = "034a4a" + let s:color_column = "034a4a" " Vertical line set by colorcolumn option. + let s:cursor_line = "014242" " Horizontal line at the cursor. + let s:cursor_column = "014242" " Vertical line at the cursor. let s:active_tab_bg = s:background let s:active_tab_fg = s:text let s:inactive_tab_bg = s:line @@ -306,15 +309,15 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 call X("MatchParen", "", s:selection, "") call X("Folded", s:comment, s:background, "") call X("FoldColumn", s:comment, s:background, "") - if version >= 700 - call X("CursorLine", "", s:line, "none") - call X("CursorColumn", "", s:line, "none") + if version >= 700 + call X("CursorLine", "", s:cursor_line, "none") + call X("CursorColumn", "", s:cursor_column, "none") call X("PMenu", s:foreground, s:selection, "none") call X("PMenuSel", s:foreground, s:selection, "reverse") call X("SignColumn", "", s:background, "none") end if version >= 703 - call X("ColorColumn", "", s:line, "none") + call X("ColorColumn", "", s:color_column, "none") end " Standard Highlighting