Skip to content

Commit

Permalink
fix neoclide#35: highlight treesitter operators
Browse files Browse the repository at this point in the history
  • Loading branch information
pocco81 committed Sep 22, 2021
1 parent e3f9dd4 commit ab1eab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/catppuccino/core/integrations/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function M.get(cpt)
TSNamespace = { fg = cpt.cyan }, -- For identifiers referring to modules and namespaces.
-- TSNone = { }; -- TODO: docs
-- TSNumber = { }; -- For all numbers
TSOperator = { fg = cpt.fg }, -- For any operator: `+`, but also `->` and `*` in cpt.
TSOperator = { fg = cpt.cyan }, -- For any operator: `+`, but also `->` and `*` in cpt.
TSParameter = { fg = cpt.orange_br }, -- For parameters of a function.
-- TSParameterReference= { }; -- For references to parameters of a function.
TSProperty = { fg = cpt.red_br }, -- Same as `TSField`.
Expand Down

0 comments on commit ab1eab9

Please sign in to comment.