From 18c286399a4692522dcff64985d2f9c35b798d3b Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Wed, 5 Jan 2022 11:20:53 -0500 Subject: [PATCH] made constructors lavender --- 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 a079e15..04b2b6c 100644 --- a/lua/catppuccin/core/integrations/treesitter.lua +++ b/lua/catppuccin/core/integrations/treesitter.lua @@ -24,7 +24,7 @@ function M.get(cp) TSNumber = { fg = math_logic, style = "bold,italic" }, -- For all numbers TSBoolean = { fg = math_logic, style = "bold,italic" }, -- For booleans. - TSConstructor = { fg = cp.white }, -- For constructor calls and definitions: = { } in Lua, and Java constructors. + TSConstructor = { fg = cp.lavender }, -- For constructor calls and definitions: = { } in Lua, and Java constructors. TSConstant = { fg = cp.peach }, -- For constants TSConditional = { fg = cl, style = "bold" }, -- For keywords related to conditionnals. TSRepeat = { fg = cl, style = "bold" }, -- For keywords related to loops.