feat(nvim): specify different highlight for cancelled org tasks
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 41s
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 41s
This commit is contained in:
parent
b41f9f0d14
commit
f3be42ef5d
@ -307,6 +307,7 @@ return {
|
||||
get_hl("@org.timestamp.inactive"),
|
||||
},
|
||||
{ "@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.priority.highest",
|
||||
|
@ -77,6 +77,9 @@ return {
|
||||
org_startup_indented = false,
|
||||
org_adapt_indentation = false,
|
||||
org_todo_keywords = { "TODO(t)", "WAIT(n)", "|", "DONE(d)", "CANCELLED(c)" },
|
||||
org_todo_keyword_faces = {
|
||||
CANCELLED = ':weight bold'
|
||||
},
|
||||
win_split_mode = "auto",
|
||||
org_capture_templates = {
|
||||
t = {
|
||||
|
Loading…
Reference in New Issue
Block a user