Obsidian.nvim checkboxes
Checkboxes are defined like:
lua
{
ui = {
checkboxes = {
[" "] = { char = " ", hl_group = "ObsidianTodo" },
[">"] = { char = ">", hl_group = "ObsidianDone" },
}
}
}keyis what is actually used as the underlying value in markdowncharis the replacement value used byui.enablehl_groupis what is used forui.enablefor coloring the todo items
There is a hidden, undocumented order value for checkboxes which defines their sorting order.
See: The toggle_checkbox() documentation
