Add HTML syntax highlighting (#25)

This commit is contained in:
Simon Smith
2016-05-10 16:17:07 +01:00
committed by Josh Dick
parent 9c09c091c0
commit 429fc5f726

View File

@@ -184,6 +184,18 @@ call s:h("WildMenu", {}) " current match in 'wildmenu' completion
" | Language-Specific Highlighting |
" +--------------------------------+
" HTML
call s:h("htmlTagName", { "fg": s:red })
call s:h("htmlSpecialTagName", { "fg": s:red })
call s:h("htmlSpecialChar", { "fg": s:dark_yellow })
call s:h("htmlTag", { "fg": s:white })
call s:h("htmlLink", { "fg": s:purple })
call s:h("htmlEndTag", { "fg": s:white })
call s:h("htmlArg", { "fg": s:dark_yellow })
call s:h("htmlH1", { "fg": s:white })
call s:h("Title", { "fg": s:white })
" JavaScript
call s:h("javaScriptBraces", { "fg": s:white })
call s:h("javaScriptIdentifier", { "fg": s:purple })
call s:h("javaScriptNull", { "fg": s:dark_yellow })