feat(nvim): specify different highlight for cancelled org tasks
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 41s

This commit is contained in:
Price Hiller 2025-01-09 00:27:05 -06:00
parent b41f9f0d14
commit f3be42ef5d
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 4 additions and 0 deletions

View File

@ -307,6 +307,7 @@ return {
get_hl("@org.timestamp.inactive"), get_hl("@org.timestamp.inactive"),
}, },
{ "@org.keyword.done", { fg = colors.springGreen, bold = true, italic = true } }, { "@org.keyword.done", { fg = colors.springGreen, bold = true, italic = true } },
{ "@org.keyword.face.cancelled", { fg = colors.waveRed, bold = true, italic = true } },
{ "@org.keyword.todo", { fg = colors.samuraiRed, bold = true, italic = true } }, { "@org.keyword.todo", { fg = colors.samuraiRed, bold = true, italic = true } },
{ {
"@org.priority.highest", "@org.priority.highest",

View File

@ -77,6 +77,9 @@ return {
org_startup_indented = false, org_startup_indented = false,
org_adapt_indentation = false, org_adapt_indentation = false,
org_todo_keywords = { "TODO(t)", "WAIT(n)", "|", "DONE(d)", "CANCELLED(c)" }, org_todo_keywords = { "TODO(t)", "WAIT(n)", "|", "DONE(d)", "CANCELLED(c)" },
org_todo_keyword_faces = {
CANCELLED = ':weight bold'
},
win_split_mode = "auto", win_split_mode = "auto",
org_capture_templates = { org_capture_templates = {
t = { t = {