From 6bec7eb250116946603c8f3053580fde28565468 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Sun, 7 Dec 2014 17:29:03 +0000 Subject: [PATCH] Update vim twilight highlight colors & groups --- colors/twilight.vim | 35 ++++++++++++++++++++++++----------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/colors/twilight.vim b/colors/twilight.vim index 6a9e99b..800f0f3 100644 --- a/colors/twilight.vim +++ b/colors/twilight.vim @@ -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 HiGroup("ErrorMsg", s:white, s:red, "none") call HiGroup("VertSplit", s:dark_grey, s:dark_grey, "none") call HiGroup("Folded", s:dark_green_blue, s:dark_grey, "none") - "call HiGroup("FoldColumn", s:empty, s:empty, "none") - "call HiGroup("SignColumn", s:empty, s:empty, "none") + call HiGroup("FoldColumn", s:dark_green_blue, s:dark_grey, "none") + call HiGroup("SignColumn", s:empty, s:dark_grey, "none") "call HiGroup("IncSearch", s:empty, s:empty, "none") call HiGroup("LineNr", s:white, s:dark_grey, "none") - call HiGroup("CursorLineNr", s:empty, s:dark_grey, "none") + call HiGroup("CursorLineNr", s:light_orange, s:dark_grey, "none") call HiGroup("MatchParen", s:none, s:dark_green_blue, "none") "call HiGroup("ModeMsg", s:empty, s:empty, "none") "call HiGroup("MoreMsg", s:empty, s:empty, "none") - "call HiGroup("NonText", s:empty, s:empty, "none") + call HiGroup("NonText", s:blue, s:black, "none") call HiGroup("Normal", s:white, s:black, "none") call HiGroup("Pmenu", s:light_grey, s:grey, "none") call HiGroup("PmenuSel", s:black, s:light_orange, "bold") @@ -89,10 +91,10 @@ if has("gui_running") || &t_Co == 256 "call HiGroup("Question", s:empty, s:empty, "none") call HiGroup("Search", s:none, s:light_grey, "reverse") "call HiGroup("SpecialKey", s:emptnoney, s:empty, "none") - call HiGroup("SpellBad", s:white, s:red, "bold") - call HiGroup("SpellCap", s:white, s:purple, "bold") - "call HiGroup("SpellLocal", s:empty, s:empty, "none") - "call HiGroup("SpellRare", s:empty, s:empty, "none") + call HiGroup("SpellBad", s:bright_red, s:black, "bold") + call HiGroup("SpellCap", s:blue, s:black, "bold") + call HiGroup("SpellLocal", s:light_orange, s:black, "bold") + call HiGroup("SpellRare", s:beige, s:black, "bold") "call HiGroup("StatusLine", s:empty, s:empty, "none") "call HiGroup("StatusLineNC", s:empty, s:empty, "none") call HiGroup("TabLine", s:light_grey, s:mid_grey, "bold") @@ -153,11 +155,22 @@ if has("gui_running") || &t_Co == 256 call HiGroup("Error", s:white, s:red, "bold") - call HiGroup("Todo", s:orange, s:purple, "bold") - - call HiGroup("Note", s:dark_green, s:none, "bold") + call HiGroup("Todo", s:orange, s:dark_grey, "bold") " }}} + "" custom syntax groups {{{ + call HiGroup("Note", s:dark_green, s:none, "bold") + call HiGroup("Important", s:bright_yellow, s:empty, "bold") + call HiGroup("Research", s:orange, s:empty, "bold") + + call HiGroup("SyntasticErrorSign", s:white, s:red, "bold") + call HiGroup("SyntasticWarningSign", s:white, s:purple, "bold") + "call HiGroup("SyntasticErrorLine", s:empty, s:blue, "none") + "call HiGroup("SyntasticWarningLine", s:empty, s:empty, "none") + call HiGroup("SyntasticError", s:white, s:red, "bold") + call HiGroup("SyntasticWarning", s:none, s:purple, "bold") + "" }}} + "" delete functions {{{ delfunction HiGroup " }}}