From bd2b1eac56cd5c90db5e8498795b3aaa16f364f4 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sun, 31 Oct 2021 18:50:04 -0500 Subject: [PATCH] fix: made punct delimeter magenta --- 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 3d936a8..f9780be 100644 --- a/lua/catppuccino/core/integrations/treesitter.lua +++ b/lua/catppuccino/core/integrations/treesitter.lua @@ -44,7 +44,7 @@ function M.get(cp) -- TSParameterReference= { }; -- For references to parameters of a function. TSProperty = { fg = cp.catppuccino6 }, -- Same as `TSField`. tomlTSProperty = { fg = cp.catppuccino10 }, -- Differentiates between string and properties - TSPunctDelimiter = { fg = cp.catppuccino8 }, -- For delimiters ie: `.` + TSPunctDelimiter = { fg = cp.catppuccino3 }, -- For delimiters ie: `.` TSPunctBracket = { fg = cp.catppuccino6 }, -- For brackets and parenthesis. TSPunctSpecial = { fg = cp.catppuccino0 }, -- For special punctutation that does not fall in the catagories before. TSRepeat = { fg = cp.catppuccino6, style = cnf.styles.keywords }, -- For keywords related to loops.