From e077f968043852277b7b111acc43d1cf79f7df73 Mon Sep 17 00:00:00 2001 From: Sam Davenport Date: Fri, 4 Apr 2025 20:48:42 -0500 Subject: [PATCH] trying to customize highlight groups in gruvbox --- lua/sld/style.lua | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 {