From ca38249ad39f36f989a0cd1882936c8d3f288824 Mon Sep 17 00:00:00 2001 From: Sam Davenport Date: Fri, 4 Apr 2025 20:58:12 -0500 Subject: [PATCH] figured out that the @ symbol is the one we need to use to find stuff treesitter uses --- lua/sld/style.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/sld/style.lua b/lua/sld/style.lua index 5e067fae..0f950d2a 100644 --- a/lua/sld/style.lua +++ b/lua/sld/style.lua @@ -18,12 +18,12 @@ require('gruvbox-material').setup { highlight = true, -- whether to highlight signs }, customize = function(group, opt) - if group == 'Type' then + if group == '@type' then opt.link = nil opt.fg = colors.blue end - if group == 'Macro' then + if string.find(group, '.macro') then opt.link = nil opt.fg = colors.purple end