-
Notifications
You must be signed in to change notification settings - Fork 186
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
There is no way to disable bold for "true" and "false" keywords. #235
Comments
I can't reproduce. If you are using compilation feature remember to reload neovim and use the command |
from your screenshot I can't see any bold statement or italic comment.. use |
I don't understand what are you saying. I disable every style with |
finally fixed the situation in overrides option. overrides = function()
return {
-- setting boolean decoration bold to false
Boolean = { bold = false },
}
end, Thanks to u/zanza19 from neovim subreddit, he pointed out that problem is in this file. -- Boolean a boolean constant: TRUE, false
Boolean = { fg = theme.syn.constant, bold = true }, There should be type for booleans in config. |
I have set all styles to { bold = false } but still "true" and "false" are left out. How to remove boldness from these keywords?
The text was updated successfully, but these errors were encountered: