[nvim] Improves markdown checkbox experience

This commit is contained in:
2025-05-06 11:25:06 -07:00
parent 2c3ab47daa
commit aa2cec9f70
2 changed files with 51 additions and 0 deletions

View File

@@ -38,6 +38,13 @@ return {
ui = {
-- Disable the UI features and let render-markdown.nvim handle it.
enable = false,
-- Even with UI disabled, this determines the order of checkbox states for the smart action.
checkboxes = {
[" "] = { char = "", hl_group = "ObsidianTodo" },
["x"] = { char = "", hl_group = "ObsidianDone" },
["/"] = { char = "", hl_group = "ObsidianDone" },
[">"] = { char = "", hl_group = "ObsidianDone" },
},
},
},
}