Skip to content

Commit a2e39ba

Browse files
committed
Update neorg todo icons
1 parent 7d6d09c commit a2e39ba

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

.config/nvim/plugin/neorg.lua

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,25 @@ if hasmodule then
1515
icon_preset = "diamond",
1616
icons = {
1717
todo = {
18-
uncertain = {
19-
icon = "?"
18+
done = {
19+
icon = ""
20+
},
21+
pending = {
22+
icon = "" -- ""
23+
},
24+
uncertain = { -- task_ambiguous
25+
icon = ""
2026
},
2127
on_hold = {
22-
icon = "="
28+
icon = ""
29+
},
30+
cancelled = {
31+
icon = ""
32+
},
33+
important = {
34+
icon = "!"
2335
},
2436
}
25-
-- markup_preset = "dimmed",
26-
-- dim_code_blocks = {
27-
-- enabled = false,
28-
-- },
2937
}
3038
}
3139
}, -- Adds pretty icons to your documents
@@ -39,13 +47,13 @@ if hasmodule then
3947
}
4048
},
4149
["core.dirman"] = { -- Manages Neorg workspaces
50+
-- https://github.com/nvim-neorg/neorg/wiki/Dirman
4251
config = {
4352
workspaces = {
4453
org = "~/org",
4554
},
4655
default_workspace = "org",
47-
-- autodetect = true,
48-
-- autochdir = true,
56+
-- recommended to set Neovim autochdir
4957
},
5058
},
5159
["core.keybinds"] = {
@@ -62,6 +70,7 @@ if hasmodule then
6270
keybinds.remap_event("norg", "n", "gtc", "core.qol.todo_items.todo.task_cancelled")
6371
keybinds.remap_event("norg", "n", "gtr", "core.qol.todo_items.todo.task_recurring")
6472
keybinds.remap_event("norg", "n", "gti", "core.qol.todo_items.todo.task_important")
73+
keybinds.remap_event("norg", "n", "gta", "core.qol.todo_items.todo.task_ambiguous")
6574
keybinds.remap_event("norg", "n", "<C-Space>", "core.qol.todo_items.todo.task_cycle")
6675
keybinds.remap_event("norg", "n", "<C-S-Space>", "core.qol.todo_items.todo.task_cycle_reverse")
6776

0 commit comments

Comments
 (0)