Tweak some vim colors
This commit is contained in:
parent
00f0b48aa5
commit
feeb77bfae
|
@ -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 <SID>X("Folded", s:comment, s:background, "")
|
||||
call <SID>X("FoldColumn", s:comment, s:background, "")
|
||||
if version >= 700
|
||||
call <SID>X("CursorLine", "", s:line, "none")
|
||||
call <SID>X("CursorColumn", "", s:line, "none")
|
||||
call <SID>X("CursorLine", "", s:cursor_line, "none")
|
||||
call <SID>X("CursorColumn", "", s:cursor_column, "none")
|
||||
call <SID>X("PMenu", s:foreground, s:selection, "none")
|
||||
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
|
||||
call <SID>X("SignColumn", "", s:background, "none")
|
||||
end
|
||||
if version >= 703
|
||||
call <SID>X("ColorColumn", "", s:line, "none")
|
||||
call <SID>X("ColorColumn", "", s:color_column, "none")
|
||||
end
|
||||
|
||||
" Standard Highlighting
|
||||
|
|
|
@ -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 <SID>X("MatchParen", "", s:selection, "")
|
||||
call <SID>X("Folded", s:comment, s:background, "")
|
||||
call <SID>X("FoldColumn", s:comment, s:background, "")
|
||||
if version >= 700
|
||||
call <SID>X("CursorLine", "", s:line, "none")
|
||||
call <SID>X("CursorColumn", "", s:line, "none")
|
||||
if version >= 700
|
||||
call <SID>X("CursorLine", "", s:cursor_line, "none")
|
||||
call <SID>X("CursorColumn", "", s:cursor_column, "none")
|
||||
call <SID>X("PMenu", s:foreground, s:selection, "none")
|
||||
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
|
||||
call <SID>X("SignColumn", "", s:background, "none")
|
||||
end
|
||||
if version >= 703
|
||||
call <SID>X("ColorColumn", "", s:line, "none")
|
||||
call <SID>X("ColorColumn", "", s:color_column, "none")
|
||||
end
|
||||
|
||||
" Standard Highlighting
|
||||
|
|
Loading…
Reference in New Issue
Block a user