diff --git a/lua/sld/style.lua b/lua/sld/style.lua index 31d183f2..5e067fae 100644 --- a/lua/sld/style.lua +++ b/lua/sld/style.lua @@ -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 {