diff --git a/modules/lang/org/config.el b/modules/lang/org/config.el index 9b44b3534..887deaa9b 100644 --- a/modules/lang/org/config.el +++ b/modules/lang/org/config.el @@ -139,20 +139,20 @@ background (and foreground) match the current theme." '((sequence "TODO(t)" ; A task that needs doing & is ready to do "PROJ(p)" ; An ongoing project that cannot be completed in one step - "DOIN(d)" ; A task that is in progress + "STRT(d)" ; A task that is in progress "WAIT(w)" ; Something is holding up this task; or it is paused "|" - "DONE(x)" ; Task successfully completed + "DONE(d)" ; Task successfully completed "KILL(k)") ; Task was cancelled, aborted or is no longer applicable (sequence "[ ](T)" ; A task that needs doing - "[-](D)" ; Task is in progress + "[-](S)" ; Task is in progress "[?](W)" ; Task is being held up or paused "|" - "[X](X)")) ; Task was completed + "[X](D)")) ; Task was completed org-todo-keyword-faces '(("[-]" . +org-todo-active) - ("DOIN" . +org-todo-active) + ("STRT" . +org-todo-active) ("[?]" . +org-todo-onhold) ("WAIT" . +org-todo-onhold) ("PROJ" . +org-todo-project)))