From d292c055a20f866acb9505bf0f510017be55b49a Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Mon, 3 Jan 2022 23:02:01 -0500 Subject: [PATCH] lavender for builtin constants --- 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 b0ac8ba..db0da9c 100644 --- a/lua/catppuccin/core/integrations/treesitter.lua +++ b/lua/catppuccin/core/integrations/treesitter.lua @@ -31,7 +31,7 @@ function M.get(cp) TSException = { fg = cp.peach, style = cnf.styles.keywords }, -- For exception related keywords. -- builtin - TSConstBuiltin = { fg = cp.teal, style = cnf.styles.keywords }, -- For constant that are built in the language: nil in Lua. + TSConstBuiltin = { fg = cp.lavender, style = cnf.styles.keywords }, -- For constant that are built in the language: nil in Lua. TSFuncBuiltin = { fg = cp.peach, style = "italic" }, -- For builtin functions: table.insert in Lua. TSTypeBuiltin = { fg = cp.yellow, style = "italic" }, -- For builtin types. TSVariableBuiltin = { fg = cp.teal, style = "italic" }, -- Variable names that are defined by the languages, like this or self.