Skip to content

Commit ca38249

Browse files
figured out that the @ symbol is the one we need to use to find stuff treesitter uses
1 parent e077f96 commit ca38249

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/sld/style.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ require('gruvbox-material').setup {
1818
highlight = true, -- whether to highlight signs
1919
},
2020
customize = function(group, opt)
21-
if group == 'Type' then
21+
if group == '@type' then
2222
opt.link = nil
2323
opt.fg = colors.blue
2424
end
2525

26-
if group == 'Macro' then
26+
if string.find(group, '.macro') then
2727
opt.link = nil
2828
opt.fg = colors.purple
2929
end

0 commit comments

Comments
 (0)