update treesitter hlgroups

v2.5
Sidhanth Rathod 3 years ago committed by GitHub
parent 00b2b46819
commit 69d32a11d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,83 +5,79 @@ return {
fg = theme.base0F, fg = theme.base0F,
}, },
TSAttribute = { ['@attribute'] = {
fg = theme.base0A, fg = theme.base0A,
}, },
TSTagAttribute = { ["@character"] = {
link = "TSProperty",
},
TSCharacter = {
fg = theme.base08, fg = theme.base08,
}, },
TSConstructor = { ["@constructor"] = {
fg = theme.base0C, fg = theme.base0C,
}, },
TSConstBuiltin = { ["@constant.builtin"] = {
fg = theme.base09, fg = theme.base09,
}, },
TSConstMacro = { ["@constant.macro"] = {
fg = theme.base08, fg = theme.base08,
}, },
TSError = { ["@error"] = {
fg = theme.base08, fg = theme.base08,
}, },
TSException = { ["@exception"] = {
fg = theme.base08, fg = theme.base08,
}, },
TSFloat = { ["@float"] = {
fg = theme.base09, fg = theme.base09,
}, },
TSKeyword = { ["@keyword"] = {
fg = theme.base0E, fg = theme.base0E,
}, },
TSKeywordFunction = { ["@keyword.function"] = {
fg = theme.base0E, fg = theme.base0E,
}, },
TSKeywordReturn = { ["@keyword.return"] = {
fg = theme.base0E, fg = theme.base0E,
}, },
TSFunction = { ["@function"] = {
fg = theme.base0D, fg = theme.base0D,
}, },
TSFuncBuiltin = { ["@function.builtin"] = {
fg = theme.base0D, fg = theme.base0D,
}, },
TSFuncMacro = { ["@function.macro"] = {
fg = theme.base08, fg = theme.base08,
}, },
TSKeywordOperator = { ["@keyword.operator"] = {
fg = theme.base0E, fg = theme.base0E,
}, },
TSMethod = { ["@method"] = {
fg = theme.base0D, fg = theme.base0D,
}, },
TSNamespace = { ["@namespace"] = {
fg = theme.base08, fg = theme.base08,
}, },
TSNone = { ["@none"] = {
fg = theme.base05, fg = theme.base05,
}, },
TSParameter = { ["@paramter"] = {
fg = theme.base08, fg = theme.base08,
}, },
@ -89,74 +85,81 @@ return {
fg = theme.base05, fg = theme.base05,
}, },
TSPunctBracket = { ["@punctuation.bracket"] = {
fg = theme.base0F, fg = theme.base0F,
}, },
TSPunctDelimiter = { ["@punctuation.delimiter"] = {
fg = theme.base0F, fg = theme.base0F,
}, },
TSPunctSpecial = { ["@punctuation.special"] = {
fg = theme.base08, fg = theme.base08,
}, },
TSStringRegex = { ["@string.regex"] = {
fg = theme.base0C, fg = theme.base0C,
}, },
TSStringEscape = { ["@string.escape"] = {
fg = theme.base0C, fg = theme.base0C,
}, },
TSSymbol = { ["@symbol"] = {
fg = theme.base0B, fg = theme.base0B,
}, },
TSTagDelimiter = { -- @tag
["@tag.attribute"] = {
link = "TSProperty",
},
["@tag.delimiter"] = {
fg = theme.base0F, fg = theme.base0F,
}, },
TSText = { ["@text"] = {
fg = theme.base05, fg = theme.base05,
}, },
TSStrong = { ["@text.strong"] = {
bold = true, bold = true,
}, },
TSEmphasis = { ["@text.emphasis"] = {
fg = theme.base09, fg = theme.base09,
}, },
TSStrike = { ["@text.strike"] = {
fg = theme.base00, fg = theme.base00,
strikethrough = true, strikethrough = true,
}, },
TSLiteral = { ["@text.literal"] = {
fg = theme.base09, fg = theme.base09,
}, },
TSURI = { ["@text.uri"] = {
fg = theme.base09, fg = theme.base09,
underline = true, underline = true,
}, },
TSTypeBuiltin = { ["@type.builtin"] = {
fg = theme.base0A, fg = theme.base0A,
}, },
TSVariableBuiltin = { ["@variable"] = {
fg = theme.base09, fg = theme.base05,
}, },
TSVariable = { ["@variable.builtin"] = {
fg = theme.base05, fg = theme.base09,
}, },
TSDefinition = { -- variable.global
["@definition"] = {
sp = theme.base04, sp = theme.base04,
underline = true, underline = true,
}, },
@ -170,23 +173,23 @@ return {
bold = true, bold = true,
}, },
luaTSField = { ["@field"] = {
fg = theme.base0D, fg = theme.base08,
}, },
TSFieldKey = { TSFieldKey = {
fg = theme.base08, fg = theme.base0D,
}, },
TSProperty = { ["@property"] = {
fg = theme.base08, fg = theme.base08,
}, },
TSInclude = { ["@include"] = {
link = "Include", link = "Include",
}, },
TSConditional = { ["@conditional"] = {
link = "Conditional", link = "Conditional",
}, },
} }

Loading…
Cancel
Save