fix: set proper fg for @variable. Fixes #331

This commit is contained in:
Folke Lemaitre
2023-03-08 12:06:42 +01:00
parent 663657d652
commit 8da3aab41d

View File

@@ -235,7 +235,7 @@ function M.setup()
["@property"] = { fg = c.green1 },
--- Identifiers
["@variable"] = { style = options.styles.variables }, -- Any variable name that does not have another highlight.
["@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`.
--- Text