From d8458ae010c333da1ba147645aa2d04a0b21385d Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sat, 7 Jun 2025 09:23:51 +0200 Subject: [PATCH] nvim: Update checkbox markdown states We now have the usual 'undone' ([ ]) and 'done' ([x]) states, but express 3 further ones that are _somewhat_ standardized: - [o] this one is 'doing', in-progress - [-] this one is 'indeterminate', we're not sure - [~] this one is 'deleted', never to be done --- nvim/.config/nvim/lua/plugins/prose.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins/prose.lua b/nvim/.config/nvim/lua/plugins/prose.lua index fa1813b..169faa0 100644 --- a/nvim/.config/nvim/lua/plugins/prose.lua +++ b/nvim/.config/nvim/lua/plugins/prose.lua @@ -80,8 +80,9 @@ local prose_plugs = { }, checkbox = { custom = { - todo = { raw = "[-]", rendered = "󰡖 ", highlight = "RenderMarkdownTodo" }, - removed = { raw = "[_]", rendered = "󱋭 ", highlight = "RenderMarkdownTodo" }, + doing = { raw = "[o]", rendered = "󰡖 ", highlight = "RenderMarkdownTodo" }, + indeterminate = { raw = "[-]", rendered = "󰄗 ", highlight = "RenderMarkdownTodo" }, + removed = { raw = "[~]", rendered = "󱋭 ", highlight = "RenderMarkdownTodo" }, }, }, html = {