fix(treesitter): namespace.builtin

This commit is contained in:
Folke Lemaitre 2023-10-03 19:54:00 +02:00
parent e89caa3ad6
commit b6bca9028f
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040

View File

@ -243,6 +243,7 @@ function M.setup()
--- Identifiers
["@variable"] = { fg = c.fg, style = options.styles.variables }, -- Any variable name that does not have another highlight.
["@variable.builtin"] = { fg = c.red }, -- Variable names that are defined by the languages, like `this` or `self`.
["@namespace.builtin"] = { fg = c.red }, -- Variable names that are defined by the languages, like `this` or `self`.
--- Text
-- ["@text.literal.markdown"] = { fg = c.blue },