trying to customize highlight groups in gruvbox
This commit is contained in:
parent
996dc5ee31
commit
e077f96804
|
@ -17,7 +17,19 @@ require('gruvbox-material').setup {
|
||||||
signs = {
|
signs = {
|
||||||
highlight = true, -- whether to highlight 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 {
|
require('lualine').setup {
|
||||||
|
|
Loading…
Reference in New Issue