We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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 ... } })
The text was updated successfully, but these errors were encountered:
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 }, }, })
Sorry, something went wrong.
Has any progress been made on this?
No branches or pull requests
Following #220 idea, we will introduce fine-grained bold options in the setup call
The text was updated successfully, but these errors were encountered: