diff --git a/vim/colors/Tomorrow-Night.vim b/vim/colors/Tomorrow-Night.vim index 3e9e5bf..b8343ee 100644 --- a/vim/colors/Tomorrow-Night.vim +++ b/vim/colors/Tomorrow-Night.vim @@ -26,7 +26,6 @@ if !has("gui_running") let s:selection = "585858" end -set background=dark hi clear syntax reset @@ -246,7 +245,8 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 call X("NonText", s:selection, "", "") call X("SpecialKey", s:selection, "", "") call X("Search", s:background, s:yellow, "") - call X("TabLine", s:foreground, s:background, "reverse") + call X("TabLine", s:window, s:foreground, "reverse") + call X("TabLineFill", s:window, s:foreground, "reverse") call X("StatusLine", s:window, s:yellow, "reverse") call X("StatusLineNC", s:window, s:foreground, "reverse") call X("VertSplit", s:window, s:window, "none") @@ -310,6 +310,7 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 " Ruby Highlighting call X("rubySymbol", s:green, "", "") call X("rubyConstant", s:yellow, "", "") + call X("rubyAccess", s:yellow, "", "") call X("rubyAttribute", s:blue, "", "") call X("rubyInclude", s:blue, "", "") call X("rubyLocalVariableOrMethod", s:orange, "", "") @@ -318,12 +319,19 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 call X("rubyInterpolationDelimiter", s:orange, "", "") call X("rubyConditional", s:purple, "", "") call X("rubyRepeat", s:purple, "", "") + call X("rubyControl", s:purple, "", "") + call X("rubyException", s:purple, "", "") " Python Highlighting call X("pythonInclude", s:purple, "", "") call X("pythonStatement", s:purple, "", "") call X("pythonConditional", s:purple, "", "") + call X("pythonRepeat", s:purple, "", "") + call X("pythonException", s:purple, "", "") call X("pythonFunction", s:blue, "", "") + call X("pythonPreCondit", s:purple, "", "") + call X("pythonRepeat", s:aqua, "", "") + call X("pythonExClass", s:orange, "", "") " JavaScript Highlighting call X("javaScriptBraces", s:foreground, "", "") @@ -349,6 +357,28 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 call X("ShowMarksHLu", s:yellow, s:background, "none") call X("ShowMarksHLm", s:aqua, s:background, "none") + " Cucumber Highlighting + call X("cucumberGiven", s:blue, "", "") + call X("cucumberGivenAnd", s:blue, "", "") + + " Go Highlighting + call X("goDirective", s:purple, "", "") + call X("goDeclaration", s:purple, "", "") + call X("goStatement", s:purple, "", "") + call X("goConditional", s:purple, "", "") + call X("goConstants", s:orange, "", "") + call X("goTodo", s:yellow, "", "") + call X("goDeclType", s:blue, "", "") + call X("goBuiltins", s:purple, "", "") + + " Lua Highlighting + call X("luaStatement", s:purple, "", "") + call X("luaRepeat", s:purple, "", "") + call X("luaCondStart", s:purple, "", "") + call X("luaCondElseif", s:purple, "", "") + call X("luaCond", s:purple, "", "") + call X("luaCondEnd", s:purple, "", "") + " Delete Functions delf X delf rgb @@ -360,3 +390,5 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 delf grey_level delf grey_number endif + +set background=dark