gruvbox.nvim icon indicating copy to clipboard operation
gruvbox.nvim copied to clipboard

Granular bold options

Open ellisonleao opened this issue 3 years ago • 2 comments

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
     ...
  }
})

ellisonleao avatar Mar 20 '23 16:03 ellisonleao

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 },
  },
})

cryptomilk avatar Apr 19 '23 13:04 cryptomilk

Has any progress been made on this?

ecasselton avatar Mar 19 '24 17:03 ecasselton