From 159037858b3e2270a162a244871238f12924e82d Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sat, 21 Aug 2021 16:13:53 -0500 Subject: [PATCH] fix: (treesitter integ.) changes operator to fg --- lua/catppuccino/core/integrations/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/catppuccino/core/integrations/treesitter.lua b/lua/catppuccino/core/integrations/treesitter.lua index c71141a..3890351 100644 --- a/lua/catppuccino/core/integrations/treesitter.lua +++ b/lua/catppuccino/core/integrations/treesitter.lua @@ -36,7 +36,7 @@ return { TSNamespace = {fg = cpt.cyan}, -- For identifiers referring to modules and namespaces. -- TSNone = { }; -- TODO: docs -- TSNumber = { }; -- For all numbers - TSOperator = {fg = cpt.fg_alt}, -- For any operator: `+`, but also `->` and `*` in cpt. + TSOperator = {fg = cpt.fg}, -- 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_bg}, -- Same as `TSField`.