|
|
|
|
@@ -47,6 +47,10 @@ if !exists("g:badwolf_html_link_underline") " {{{
|
|
|
|
|
let g:badwolf_html_link_underline = 1
|
|
|
|
|
endif " }}}
|
|
|
|
|
|
|
|
|
|
if !exists("g:badwolf_css_props_highlight") " {{{
|
|
|
|
|
let g:badwolf_css_props_highlight = 0
|
|
|
|
|
endif " }}}
|
|
|
|
|
|
|
|
|
|
" }}}
|
|
|
|
|
" Palette {{{
|
|
|
|
|
|
|
|
|
|
@@ -296,7 +300,7 @@ call s:HL('DiffText', 'snow', 'deepergravel', 'bold')
|
|
|
|
|
|
|
|
|
|
if has("spell")
|
|
|
|
|
call s:HL('SpellCap', 'dalespale', 'bg', 'undercurl,bold', 'dalespale')
|
|
|
|
|
call s:HL('SpellBad', '', '', 'undercurl', 'dalespale')
|
|
|
|
|
call s:HL('SpellBad', '', 'bg', 'undercurl', 'dalespale')
|
|
|
|
|
call s:HL('SpellLocal', '', '', 'undercurl', 'dalespale')
|
|
|
|
|
call s:HL('SpellRare', '', '', 'undercurl', 'dalespale')
|
|
|
|
|
endif
|
|
|
|
|
@@ -397,11 +401,19 @@ call s:HL('clojureAnonArg', 'snow', '', 'bold')
|
|
|
|
|
" }}}
|
|
|
|
|
" CSS {{{
|
|
|
|
|
|
|
|
|
|
call s:HL('cssColorProp', 'fg', '', 'none')
|
|
|
|
|
call s:HL('cssBoxProp', 'fg', '', 'none')
|
|
|
|
|
call s:HL('cssTextProp', 'fg', '', 'none')
|
|
|
|
|
call s:HL('cssRenderProp', 'fg', '', 'none')
|
|
|
|
|
call s:HL('cssGeneratedContentProp', 'fg', '', 'none')
|
|
|
|
|
if g:badwolf_css_props_highlight
|
|
|
|
|
call s:HL('cssColorProp', 'dirtyblonde', '', 'none')
|
|
|
|
|
call s:HL('cssBoxProp', 'dirtyblonde', '', 'none')
|
|
|
|
|
call s:HL('cssTextProp', 'dirtyblonde', '', 'none')
|
|
|
|
|
call s:HL('cssRenderProp', 'dirtyblonde', '', 'none')
|
|
|
|
|
call s:HL('cssGeneratedContentProp', 'dirtyblonde', '', 'none')
|
|
|
|
|
else
|
|
|
|
|
call s:HL('cssColorProp', 'fg', '', 'none')
|
|
|
|
|
call s:HL('cssBoxProp', 'fg', '', 'none')
|
|
|
|
|
call s:HL('cssTextProp', 'fg', '', 'none')
|
|
|
|
|
call s:HL('cssRenderProp', 'fg', '', 'none')
|
|
|
|
|
call s:HL('cssGeneratedContentProp', 'fg', '', 'none')
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
call s:HL('cssValueLength', 'toffee', '', 'bold')
|
|
|
|
|
call s:HL('cssColor', 'toffee', '', 'bold')
|
|
|
|
|
@@ -463,6 +475,33 @@ call s:HL('javaCommentTitle', 'gravel', '')
|
|
|
|
|
call s:HL('javaDocTags', 'snow', '', 'none')
|
|
|
|
|
call s:HL('javaDocParam', 'dalespale', '', '')
|
|
|
|
|
|
|
|
|
|
" }}}
|
|
|
|
|
" LaTeX {{{
|
|
|
|
|
|
|
|
|
|
call s:HL('texStatement', 'tardis', '', 'none')
|
|
|
|
|
call s:HL('texMathZoneX', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texMathZoneA', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texMathZoneB', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texMathZoneC', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texMathZoneD', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texMathZoneE', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texMathZoneV', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texMathZoneX', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texMath', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texMathMatcher', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texRefLabel', 'dirtyblonde', '', 'none')
|
|
|
|
|
call s:HL('texRefZone', 'lime', '', 'none')
|
|
|
|
|
call s:HL('texComment', 'darkroast', '', 'none')
|
|
|
|
|
call s:HL('texDelimiter', 'orange', '', 'none')
|
|
|
|
|
call s:HL('texZone', 'brightgravel', '', 'none')
|
|
|
|
|
|
|
|
|
|
augroup badwolf_tex
|
|
|
|
|
au!
|
|
|
|
|
|
|
|
|
|
au BufRead,BufNewFile *.tex syn region texMathZoneV start="\\(" end="\\)\|%stopzone\>" keepend contains=@texMathZoneGroup
|
|
|
|
|
au BufRead,BufNewFile *.tex syn region texMathZoneX start="\$" skip="\\\\\|\\\$" end="\$\|%stopzone\>" keepend contains=@texMathZoneGroup
|
|
|
|
|
augroup END
|
|
|
|
|
|
|
|
|
|
" }}}
|
|
|
|
|
" LessCSS {{{
|
|
|
|
|
|
|
|
|
|
|