trying to customize highlight groups in gruvbox

This commit is contained in:
Sam Davenport 2025-04-04 20:48:42 -05:00
parent 996dc5ee31
commit e077f96804
1 changed files with 13 additions and 1 deletions

View File

@ -17,7 +17,19 @@ require('gruvbox-material').setup {
signs = {
highlight = true, -- whether to highlight signs
},
-- customize = funtion(str_group, opt_table) {},
customize = function(group, opt)
if group == 'Type' then
opt.link = nil
opt.fg = colors.blue
end
if group == 'Macro' then
opt.link = nil
opt.fg = colors.purple
end
return opt
end,
}
require('lualine').setup {