From 93537fc2b14668c86e3423ce725d386eda030d77 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 1 Jan 2021 00:00:33 +0000 Subject: [PATCH] Add DOING and DEFERRED workflow states --- config.org | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/config.org b/config.org index ab13dae..9c305e1 100644 --- a/config.org +++ b/config.org @@ -233,6 +233,19 @@ needs to be set up to install them if they aren't already. (auto-mode . emacs))) #+end_src +** Workflow States + I like to have =DOING= and =DEFERRED= as workflow states as well as + the standard =TODO= and =DONE=, which can be added by setting + [[help:org-todo-keywords][org-todo-keywords]]: + + #+begin_src emacs-lisp + (setq org-todo-keywords + '((sequence "TODO" "DOING" "|" "DONE" "DEFERRED"))) + #+end_src + + The ="|"= separates /needs further action/ states (before it) from + /no further action needed/ states (after it). + * Version Control ** Git =magit= is truly a wonderful creation! Only deviations from defaults