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 paths](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 6, 2023
1 parent a761624 commit 30cd6ab
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 30cd6ab

Please sign in to comment.