gruvbox.nvim
gruvbox.nvim copied to clipboard
Granular bold options
Following #220 idea, we will introduce fine-grained bold options in the setup call
require('gruvbox').setup({
bold = {
-- need to check what should go here
...
}
})
I would suggest to implement it like this:
require('gruvbox').setup({
font_style = {
comments = { italic = true },
keywords = { italic = true },
functions = { bold = true },
variables = {},
},
})
Then you can also do:
require('gruvbox').setup({
font_style = {
variables = { bold = true, italic = true },
},
})
Has any progress been made on this?