Skip to content

Commit

Permalink
fix(treesitter): link @operator to operator
Browse files Browse the repository at this point in the history
  • Loading branch information
EdenEast committed Jan 24, 2024
1 parent 1e0dbb4 commit ae41992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/nightfox/group/modules/treesitter.lua
Expand Up @@ -56,7 +56,7 @@ function M.get(spec, config, opts)
-- ["@function.method.call"] = { }, -- method calls

["@constructor"] = { fg = syn.ident }, -- constructor calls and definitions
["@operator"] = { fg = syn.builtin1, stl.variables }, -- symbolic operators (e.g. `+` / `*`)
["@operator"] = { link = "Operator" }, -- symbolic operators (e.g. `+` / `*`)

-- Keywords ---------------------------------------------------------------
["@keyword"] = { link = "Keyword" }, -- keywords not fitting into specific categories
Expand Down

0 comments on commit ae41992

Please sign in to comment.