Skip to content

Commit ab1eab9

Browse files
committed
fix neoclide#35: highlight treesitter operators
1 parent e3f9dd4 commit ab1eab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/catppuccino/core/integrations/treesitter.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function M.get(cpt)
3838
TSNamespace = { fg = cpt.cyan }, -- For identifiers referring to modules and namespaces.
3939
-- TSNone = { }; -- TODO: docs
4040
-- TSNumber = { }; -- For all numbers
41-
TSOperator = { fg = cpt.fg }, -- For any operator: `+`, but also `->` and `*` in cpt.
41+
TSOperator = { fg = cpt.cyan }, -- For any operator: `+`, but also `->` and `*` in cpt.
4242
TSParameter = { fg = cpt.orange_br }, -- For parameters of a function.
4343
-- TSParameterReference= { }; -- For references to parameters of a function.
4444
TSProperty = { fg = cpt.red_br }, -- Same as `TSField`.

0 commit comments

Comments
 (0)