Update vim twilight highlight colors & groups

This commit is contained in:
Kenneth Benzie 2014-12-07 17:29:03 +00:00
parent 32a5ba11fa
commit 6bec7eb250

View File

@ -17,6 +17,7 @@ if has("gui_running") || &t_Co == 256
let s:light_orange = [ "214", "#ffaf00" ]
let s:peach = [ "173", "#df875f" ]
let s:yellow = [ "227", "#ffff5f" ]
let s:bright_yellow = [ "11", "#ffff00" ]
let s:purple = [ "57", "#5f00ff" ]
let s:violet = [ "139", "#af87af" ]
let s:green = [ "107", "#87af5f" ]
@ -25,6 +26,7 @@ if has("gui_running") || &t_Co == 256
let s:light_green = [ "150", "#afdf87" ]
let s:dark_red = [ "88", "#870000" ]
let s:red = [ "124", "#af0000" ]
let s:bright_red = [ "1", "#808080" ]
let s:light_red = [ "167", "#df5f5f" ]
let s:brown = [ "130", "#af5f00" ]
let s:tan = [ "137", "#af875f" ]
@ -72,15 +74,15 @@ if has("gui_running") || &t_Co == 256
call <SID>HiGroup("ErrorMsg", s:white, s:red, "none")
call <SID>HiGroup("VertSplit", s:dark_grey, s:dark_grey, "none")
call <SID>HiGroup("Folded", s:dark_green_blue, s:dark_grey, "none")
"call <SID>HiGroup("FoldColumn", s:empty, s:empty, "none")
"call <SID>HiGroup("SignColumn", s:empty, s:empty, "none")
call <SID>HiGroup("FoldColumn", s:dark_green_blue, s:dark_grey, "none")
call <SID>HiGroup("SignColumn", s:empty, s:dark_grey, "none")
"call <SID>HiGroup("IncSearch", s:empty, s:empty, "none")
call <SID>HiGroup("LineNr", s:white, s:dark_grey, "none")
call <SID>HiGroup("CursorLineNr", s:empty, s:dark_grey, "none")
call <SID>HiGroup("CursorLineNr", s:light_orange, s:dark_grey, "none")
call <SID>HiGroup("MatchParen", s:none, s:dark_green_blue, "none")
"call <SID>HiGroup("ModeMsg", s:empty, s:empty, "none")
"call <SID>HiGroup("MoreMsg", s:empty, s:empty, "none")
"call <SID>HiGroup("NonText", s:empty, s:empty, "none")
call <SID>HiGroup("NonText", s:blue, s:black, "none")
call <SID>HiGroup("Normal", s:white, s:black, "none")
call <SID>HiGroup("Pmenu", s:light_grey, s:grey, "none")
call <SID>HiGroup("PmenuSel", s:black, s:light_orange, "bold")
@ -89,10 +91,10 @@ if has("gui_running") || &t_Co == 256
"call <SID>HiGroup("Question", s:empty, s:empty, "none")
call <SID>HiGroup("Search", s:none, s:light_grey, "reverse")
"call <SID>HiGroup("SpecialKey", s:emptnoney, s:empty, "none")
call <SID>HiGroup("SpellBad", s:white, s:red, "bold")
call <SID>HiGroup("SpellCap", s:white, s:purple, "bold")
"call <SID>HiGroup("SpellLocal", s:empty, s:empty, "none")
"call <SID>HiGroup("SpellRare", s:empty, s:empty, "none")
call <SID>HiGroup("SpellBad", s:bright_red, s:black, "bold")
call <SID>HiGroup("SpellCap", s:blue, s:black, "bold")
call <SID>HiGroup("SpellLocal", s:light_orange, s:black, "bold")
call <SID>HiGroup("SpellRare", s:beige, s:black, "bold")
"call <SID>HiGroup("StatusLine", s:empty, s:empty, "none")
"call <SID>HiGroup("StatusLineNC", s:empty, s:empty, "none")
call <SID>HiGroup("TabLine", s:light_grey, s:mid_grey, "bold")
@ -153,11 +155,22 @@ if has("gui_running") || &t_Co == 256
call <SID>HiGroup("Error", s:white, s:red, "bold")
call <SID>HiGroup("Todo", s:orange, s:purple, "bold")
call <SID>HiGroup("Note", s:dark_green, s:none, "bold")
call <SID>HiGroup("Todo", s:orange, s:dark_grey, "bold")
" }}}
"" custom syntax groups {{{
call <SID>HiGroup("Note", s:dark_green, s:none, "bold")
call <SID>HiGroup("Important", s:bright_yellow, s:empty, "bold")
call <SID>HiGroup("Research", s:orange, s:empty, "bold")
call <SID>HiGroup("SyntasticErrorSign", s:white, s:red, "bold")
call <SID>HiGroup("SyntasticWarningSign", s:white, s:purple, "bold")
"call <SID>HiGroup("SyntasticErrorLine", s:empty, s:blue, "none")
"call <SID>HiGroup("SyntasticWarningLine", s:empty, s:empty, "none")
call <SID>HiGroup("SyntasticError", s:white, s:red, "bold")
call <SID>HiGroup("SyntasticWarning", s:none, s:purple, "bold")
"" }}}
"" delete functions {{{
delfunction <SID>HiGroup
" }}}