summaryrefslogtreecommitdiffstats
path: root/init.el
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-11-20 19:07:59 +0000
committerMatthew Lemon <matt@matthewlemon.com>2022-11-20 19:07:59 +0000
commitac5580082d352b449767a432e44799d86a090d2f (patch)
tree887198db399bb18a725417e9804dc0cb0dbf79ce /init.el
parentfddc136a1366ce00b5df88e44d75361d4bf79922 (diff)
added DEFERRED todo keyword
Diffstat (limited to '')
-rw-r--r--init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.el b/init.el
index 30f3ffb..e19d971 100644
--- a/init.el
+++ b/init.el
@@ -800,7 +800,8 @@ If failed try to complete the common part with `company-complete-common'"
'("+LEVEL=2/+PROJECT" ("NEXT" "DOING") nil ""))
(setq org-todo-keywords
- (quote ((sequence "TODO(t)" "NEXT(n)" "DOING(D)" "PROJECT(p)" "|" "DONE(d!)")
+ (quote ((sequence "TODO(t)" "|" "DEFERRED(r@/!)")
+ (sequence "TODO(t)" "NEXT(n)" "DOING(D)" "PROJECT(p)" "|" "DONE(d!)")
(sequence "WAITING(w@/!)" "SOMEDAY(s@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)"))))