From 5c729699a12985856157864cac197e145214cc43 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sat, 11 Dec 2021 09:36:20 -0500 Subject: [PATCH] fix #66: made constructors yellow --- lua/catppuccin/core/integrations/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/catppuccin/core/integrations/treesitter.lua b/lua/catppuccin/core/integrations/treesitter.lua index 3a7da3c..b68617a 100644 --- a/lua/catppuccin/core/integrations/treesitter.lua +++ b/lua/catppuccin/core/integrations/treesitter.lua @@ -16,7 +16,7 @@ function M.get(cp) TSNote = { fg = cp.catppuccin1, bg = cp.catppuccin9 }, TSWarning = { fg = cp.catppuccin1, bg = cp.catppuccin8 }, TSDanger = { fg = cp.catppuccin1, bg = cp.catppuccin5 }, - TSConstructor = { fg = cp.catppuccin4 }, -- For constructor calls and definitions: `= { }` in Lua, and Java constructors. + TSConstructor = { fg = cp.catppuccin8 }, -- For constructor calls and definitions: `= { }` in Lua, and Java constructors. TSConditional = { fg = cp.catppuccin5, style = cnf.styles.keywords }, -- For keywords related to conditionnals. TSConstant = { fg = cp.catppuccin6 }, -- For constants TSConstBuiltin = { fg = cp.catppuccin6, style = cnf.styles.keywords }, -- For constant that are built in the language: `nil` in Lua.