Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Granular bold options #224

Open
ellisonleao opened this issue Mar 20, 2023 · 2 comments
Open

Granular bold options #224

ellisonleao opened this issue Mar 20, 2023 · 2 comments
Labels
enhancement New feature or request

Comments

@ellisonleao
Copy link
Owner

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 ellisonleao added the enhancement New feature or request label Mar 20, 2023
@cryptomilk
Copy link
Contributor

cryptomilk commented Apr 19, 2023

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

@ecasselton
Copy link

Has any progress been made on this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants