Open
Description
🚀 The feature, motivation and pitch
AFAIK, there are three characters which are converted to bullets. *
, -
and +
, If there is more I'm not aware.
So I'm using the example configuration for bullets mentioned in the README
ui = {
bullets = { char = "•", hl_group = "ObsidianBullet" },
}
This will use the same bullet for all those chars. Can we have a feature to add different bullets for different chars ?
So, for e.g. something like,
ui = {
bullets = {
["*"] = { char = "⦾" hl_group = "ObsidianBullet" },
["-"] = { char = "⦿" hl_group = "ObsidianBullet" },
....
},
}
Motivation:
We add headings with #, ##,
etc. However, underneath a header, I also have levels. I use *
as top level point and -
and +
as sublevels / subpoints for a topic. It would really be great if those had difference bullets, if possible.
Alternatives
No response
Additional context
No response