more tree-sitter

This commit is contained in:
Michael Chris Lopez
2021-09-08 10:47:59 +08:00
parent 4e0135e9cc
commit 042cceb9f7
2 changed files with 9 additions and 2 deletions

View File

@@ -239,7 +239,7 @@ local theme = lush(function()
TSVariable { Identifier }, -- Any variable name that does not have another highlight.
-- TSVariableBuiltin { }; -- Variable names that are defined by the languages, like `this` or `self`.
TSTag { fg = c.stone.li(20), gui = "bold" }, -- Tags like html tag names.
TSTag { Special }, -- Tags like html tag names.
-- TSTagDelimiter { }; -- Tag delimiter like `<` `>` `/`
-- TSText { }; -- For strings considered text in a markup language.
-- TSEmphasis { }; -- For text to be represented with emphasis.
@@ -249,6 +249,10 @@ local theme = lush(function()
-- TSLiteral { }; -- Literal text.
-- TSURI { }; -- Any URI like a link or email.
TSNote { LspDiagnosticsDefaultInformation },
TSWarning { WarningMsg },
TSDanger { Error },
-- Syntax
diffAdded { fg = c.leaf },
diffRemoved { fg = c.rose },