Skip to content

Commit 9aef9ff

Browse files
authored
fix(treesitter): missing @variable fg key (#415)
1 parent 2b1fd88 commit 9aef9ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/nightfox/group/modules/treesitter.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function M.get(spec, config, opts)
77

88
local hl = {
99
-- Identifiers ------------------------------------------------------------
10-
["@variable"] = { syn.variable, style = stl.variables }, -- various variable names
10+
["@variable"] = { fg = syn.variable, style = stl.variables }, -- various variable names
1111
["@variable.builtin"] = { fg = syn.builtin0, style = stl.variables }, -- built-in variable names (e.g. `this`)
1212
["@variable.parameter"] = { fg = syn.builtin1, stl.variables }, -- parameters of a function
1313
["@variable.member"] = { fg = syn.field }, -- object and struct fields

0 commit comments

Comments
 (0)