Skip to content

Commit ae41992

Browse files
committed
fix(treesitter): link @operator to operator
1 parent 1e0dbb4 commit ae41992

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
@@ -56,7 +56,7 @@ function M.get(spec, config, opts)
5656
-- ["@function.method.call"] = { }, -- method calls
5757

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

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

0 commit comments

Comments
 (0)