Skip to content

Commit

Permalink
fix(treesitter): missing @variable fg key (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafi committed Jan 26, 2024
1 parent 2b1fd88 commit 9aef9ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/nightfox/group/modules/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function M.get(spec, config, opts)

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

0 comments on commit 9aef9ff

Please sign in to comment.