From 4adf0b8b4b423689408e98c7488ebe02494a7e2e Mon Sep 17 00:00:00 2001 From: Jorge Befan Date: Thu, 23 Dec 2021 19:05:29 +0100 Subject: [PATCH] removing TSError highlight --- 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 eb8f107..c2ce9ea 100644 --- a/lua/catppuccin/core/integrations/treesitter.lua +++ b/lua/catppuccin/core/integrations/treesitter.lua @@ -45,7 +45,7 @@ function M.get(cp) TSWarning = { fg = cp.catppuccin1, bg = cp.catppuccin8 }, TSDanger = { fg = cp.catppuccin1, bg = cp.catppuccin5 }, -- TSConstMacro = { }; -- For constants that are defined by macros: NULL in cp. - TSError = { fg = cp.catppuccin5 }, -- For syntax/parser errors. + -- TSError = { fg = cp.catppuccin5 }, -- For syntax/parser errors. -- rustTSField = { fg = cp.catppuccin12 }, -- For fields. TSLabel = { fg = cp.catppuccin9 }, -- For labels: label: in C and :label: in Lua. TSMethod = { fg = cp.catppuccin9, style = "italic" }, -- For method calls and definitions.