From 30cd6abe0d8cb6d2c94dd5e472db84b1f004db09 Mon Sep 17 00:00:00 2001 From: Oliver Breitwieser Date: Sat, 6 May 2023 21:24:19 +0200 Subject: [PATCH] Adapt icons for 'done' and 'pending' task to new nerd font code points 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](https://github.com/ryanoasis/nerd-fonts/issues/1059#issuecomment-1404891287). --- lua/neorg/modules/core/concealer/module.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/neorg/modules/core/concealer/module.lua b/lua/neorg/modules/core/concealer/module.lua index 8d6a23c6cc..3c5a6ec39f 100644 --- a/lua/neorg/modules/core/concealer/module.lua +++ b/lua/neorg/modules/core/concealer/module.lua @@ -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", },