We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 996dc5e commit e077f96Copy full SHA for e077f96
lua/sld/style.lua
@@ -17,7 +17,19 @@ require('gruvbox-material').setup {
17
signs = {
18
highlight = true, -- whether to highlight signs
19
},
20
- -- customize = funtion(str_group, opt_table) {},
+ customize = function(group, opt)
21
+ if group == 'Type' then
22
+ opt.link = nil
23
+ opt.fg = colors.blue
24
+ end
25
+
26
+ if group == 'Macro' then
27
28
+ opt.fg = colors.purple
29
30
31
+ return opt
32
+ end,
33
}
34
35
require('lualine').setup {
0 commit comments