diff options
author | Michaël Ball <git@michaelball.name> | 2021-07-28 16:56:23 +0100 |
---|---|---|
committer | Michaël Ball <git@michaelball.name> | 2021-07-28 16:56:23 +0100 |
commit | cbc9a38e0f72561565f1e6710ea08afdf207da86 (patch) | |
tree | 75eba6b247e785181b525d21146f784920dc08ab /templates/default.mustache | |
parent | 6191622d5806d4448fa2285047936bdcee57a098 (diff) |
Add TreeSitter rules
Diffstat (limited to 'templates/default.mustache')
-rw-r--r-- | templates/default.mustache | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/default.mustache b/templates/default.mustache index e0b612c..d5c7476 100644 --- a/templates/default.mustache +++ b/templates/default.mustache @@ -405,6 +405,27 @@ call <sid>hi("StartifySpecial", s:gui03, "", s:cterm03, "", "", "") " Java highlighting call <sid>hi("javaOperator", s:gui0D, "", s:cterm0D, "", "", "") +" Treesitter +call <sid>hi("TSNote", s:gui00, s:gui0D, s:cterm00, s:cterm0D, "", "") +call <sid>hi("TSWarning", s:gui00, s:gui0A, s:cterm00, s:cterm0A, "", "") +call <sid>hi("TSWarning", s:gui00, s:gui08, s:cterm00, s:cterm08, "", "") +call <sid>hi("TSConstructor", s:gui0D, "", s:cterm0D, "", "", "") +call <sid>hi("TSField", s:gui0D, "", s:cterm0D, "", "", "") +call <sid>hi("TSKeyword", s:gui0E, "", s:cterm0E, "", "", "") +call <sid>hi("TSKeywordFunction", s:gui0E, "", s:cterm0E, "", "", "") +call <sid>hi("TSLabel", s:gui0D, "", s:cterm0D, "", "", "") +call <sid>hi("TSOperator", s:gui05, "", s:cterm05, "", "", "") +call <sid>hi("TSParameter", s:gui0D, "", s:cterm0D, "", "", "") +call <sid>hi("TSProperty", s:gui0D, "", s:cterm0D, "", "", "") +call <sid>hi("TSPunctDelimiter", s:gui05, "", s:cterm05, "", "", "") +call <sid>hi("TSPunctBracket", s:gui0C, "", s:cterm0C, "", "", "") +call <sid>hi("TSPunctSpecial", s:gui05, "", s:cterm05, "", "", "") +call <sid>hi("TSStringRegex", s:gui0C, "", s:cterm0C, "", "", "") +call <sid>hi("TSStringEscape", s:gui0C, "", s:cterm0C, "", "", "") +call <sid>hi("TSVariable", s:gui08, "", s:cterm08, "", "", "") +call <sid>hi("TSVariableBuiltin", s:gui08, "", s:cterm08, "", "", "") +call <sid>hi("TSTextReference", s:gui0C, "", s:cterm0C, "", "", "") + " Remove functions delf <sid>hi |