Fix sshfs intricacies; Add todo cycle for markdown

This commit is contained in:
Martin Pander
2026-07-10 09:02:17 +02:00
parent 653ec4e4af
commit 5e0ebe4406
6 changed files with 131 additions and 62 deletions

View File

@@ -465,7 +465,7 @@ require("obsidian").setup({
time_format = "%H:%M",
},
checkbox = {
order = { " ", ">", "x", "!", "~", "" },
order = { " ", ">", "x", "!", "~", "c", "" },
},
frontmatter = {
enabled = true,
@@ -505,19 +505,21 @@ require('render-markdown').setup({
bullet = false,
right_pad = 1,
unchecked = {
icon = '󰄱 ',
icon = '󰄱',
highlight = 'RenderMarkdownUnchecked',
scope_highlight = nil,
},
checked = {
icon = '󰱒 ',
icon = '󰱒',
highlight = 'RenderMarkdownChecked',
scope_highlight = nil,
},
custom = {
next = { raw = '[!]', rendered = ' ', highlight = 'RenderMarkdownNext', scope_highlight = nil },
ongoing = { raw = '[>]', rendered = '', highlight = 'RenderMarkdownOngoing', scope_highlight = nil },
waiting = { raw = '[~]', rendered = '󰥔 ', highlight = 'RenderMarkdownWaiting', scope_highlight = nil },
next = { raw = '[!]', rendered = '', highlight = 'RenderMarkdownNext', scope_highlight = nil },
in_progress = { raw = '[>]', rendered = '', highlight = 'RenderMarkdownOngoing', scope_highlight = nil },
waiting = { raw = '[~]', rendered = '󰥔', highlight = 'RenderMarkdownWaiting', scope_highlight = nil },
cancelled = { raw = '[c]', rendered = 'x', highlight = 'RenderMarkdownCancelled', scope_highlight = nil },
},
},
})