Skip to content

Commit

Permalink
Adapt icons for 'done' and 'pending' task to new nerd font code points
Browse files Browse the repository at this point in the history
The icons used to conceal 'done' and 'pending' tasks were [moved to new code points](https://github.com/ryanoasis/nerd-fonts/blob/master/changelog.md#breaking-2-material-design-icons-codepoints).
This commit fixes them according to [this translation table](ryanoasis/nerd-fonts#1059 (comment)).
  • Loading branch information
obreitwi committed May 11, 2023
1 parent bd79f82 commit 43ce246
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/neorg/modules/core/concealer/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -838,13 +838,13 @@ module.config.public = {

done = {
enabled = true,
icon = "",
icon = "󰄬",
query = "(todo_item_done) @icon",
},

pending = {
enabled = true,
icon = "",
icon = "󰥔",
query = "(todo_item_pending) @icon",
},

Expand Down

0 comments on commit 43ce246

Please sign in to comment.