Replies: 2 comments 4 replies
-
@vhyrro glad to see you got it working 👍🏿 . I think the default icon set that org bullets use are nice enough as long as users can change them as they go. I don't think it's configurable in org mode yet people have just accepted that so I don't think it needs too much fussing. In my experience the nvim community like to tweak a whole bunch more so I think exactly what the defaults are won't matter too much as long as people can change things. |
Beta Was this translation helpful? Give feedback.
-
How about something like the following: ["core.norg.concealer"] = {
config = {
icons = {
heading = {
level_1 = {
icon = "◉",
},
level_2 = {
icon = "◎",
},
level_3 = {
icon = "○",
},
level_4 = {
icon = "∙",
},
},
},
},
}, This will look similar to this (don't mind the highlighting right now...) The changes above are:
In general I found these icons a good inspiration: https://unicode-table.com/en/blocks/geometric-shapes/ |
Beta Was this translation helpful? Give feedback.
-
Prologue
Before we begin coding the meaty stuff like a reimagined
org-capture
etc. I thought it was important to flesh out the current user experience - icons.Features
core.norg.concealer
just got a big overwrite in theunstable
branch (it will come tomain
once extensively documented) - instead of using Neovim'sconceal
it now uses extmarks to display virtual text.The implications of this are pretty cool:
Screenshots
I'm open to discussion on the default icon choice. I don't know about the flower (I just don't have a better looking alternative right now).
Beta Was this translation helpful? Give feedback.
All reactions