You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I want to make small tweaks (make some treesitter groups bold, some italic etc). I thought about some clever use of overrides = {}, but neovim doesn't currently support highlight constructs like { link = "GruvboxAqua", bold = true }. So I would have to either use plain colors from configuration, which I don't like, since I often change light and dark theme (I would have to change these values), or just forget about extra italics/bolds etc.
This of course would use default colorscheme for @boolean but would add bold = true.
Or if it would be to painful to implement, maybe some predefined treesitter groups, like keyword, boolean, Macro, Directive, function etc.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I want to make small tweaks (make some treesitter groups bold, some italic etc). I thought about some clever use of
overrides = {}
, but neovim doesn't currently support highlight constructs like{ link = "GruvboxAqua", bold = true }
. So I would have to either use plain colors from configuration, which I don't like, since I often change light and dark theme (I would have to change these values), or just forget about extra italics/bolds etc.Describe the solution you'd like
I thought about something like:
This of course would use default colorscheme for
@boolean
but would addbold = true
.Or if it would be to painful to implement, maybe some predefined treesitter groups, like keyword, boolean, Macro, Directive, function etc.
The text was updated successfully, but these errors were encountered: