Remove italics from strings? #216
Replies: 2 comments
-
Hi, there are various ways to customize zenbones. I feel like removing italic from strings is a very common question so I added an option for it |
Beta Was this translation helpful? Give feedback.
0 replies
-
@mcchrish Awesome, thank you my dude! I ended up adding a highlight group override via autocmd: -- Zenbones
vim.api.nvim_create_autocmd("ColorScheme", {
group = vim.api.nvim_create_augroup("ZenbonesHighlights", { clear = true }),
pattern = "*",
callback = function()
vim.api.nvim_set_hl(0, "String", { italic = false, nocombine = true })
vim.api.nvim_set_hl(0, "Boolean", { italic = false, nocombine = false })
end,
}) Will happily switch once your PR lands 👍 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What's the easiest way to remove italics from strings? It's the only thing that throws me off.
I just want comments to be italic.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions