diff --git a/lua/catppuccin/groups/integrations/treesitter.lua b/lua/catppuccin/groups/integrations/treesitter.lua index 05263a61..3621b896 100644 --- a/lua/catppuccin/groups/integrations/treesitter.lua +++ b/lua/catppuccin/groups/integrations/treesitter.lua @@ -53,7 +53,7 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci -- Keywords ["@keyword"] = { link = "Keyword" }, -- For keywords that don't fall in previous categories. - ["@keyword.function"] = { fg = C.mauve, style = O.styles.keywords or {} }, -- For keywords used to define a fuction. + ["@keyword.function"] = { fg = C.mauve, style = O.styles.keywords or {} }, -- For keywords used to define a function. ["@keyword.operator"] = { fg = C.mauve, style = O.styles.operators or {} }, -- For new keyword operator ["@keyword.return"] = { fg = C.mauve, style = O.styles.keywords or {} }, -- JS & derivative @@ -169,7 +169,9 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci ["@symbol.ruby"] = { fg = C.flamingo }, -- PHP - ["@type.qualifier.php"] = { fg = C.pink, style = O.styles.properties }, -- type qualifiers (e.g. `const`) + ["@type.qualifier.php"] = { link = "Keyword" }, -- type qualifiers (e.g. `const`) + ["@method.php"] = { link = "Function" }, + ["@method.call.php"] = { link = "Function" }, } end