summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-02-12 11:36:26 -0800
committerFranck Cuny <franck@fcuny.net>2021-02-12 11:36:26 -0800
commit38f3546fbaa764bce165c0e5c9f94793174ae648 (patch)
tree070082a14ca44be447ee0c301fabda3721935c1e
parentemacs: new defined search for rg (diff)
downloademacs.d-38f3546fbaa764bce165c0e5c9f94793174ae648.tar.gz
org: fix some of the capture templates
-rw-r--r--emacs/custom/fcuny-org.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-org.el b/emacs/custom/fcuny-org.el
index dded47a..95a77b5 100644
--- a/emacs/custom/fcuny-org.el
+++ b/emacs/custom/fcuny-org.el
@@ -63,6 +63,8 @@
 
   (org-startup-indented t)
 
+  (org-todo-keywords '((type "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED")))
+
   ;; priorities
   (org-priority-start-cycle-with-default nil) ;; Start one over/under default value.
   (org-highest-priority ?1)
@@ -131,7 +133,7 @@
               ("Reading" :keys "r" :todo-state "TODO" :headline "Reading"
                :template ("* %{todo-state} %^{Description}"
                           ":PROPERTIES:" ":CREATED: %U" ":END:"
-                          "%a"))
+                          "%?"))
               ("Journal" :keys "j" :type entry :datetree t :tree-type week
                :template ("* %^{Description}"
                           ":PROPERTIES:" ":CREATED: %U" ":END:"
@@ -145,6 +147,10 @@
                :template ("* %^{Description}"
                           ":PROPERTIES:" ":CREATED: %U" ":END:"
                           "%?"))
+              ("Reading" :keys "r" :todo-state "TODO" :headline "Reading"
+               :template ("* %{todo-state} %^{Description}"
+                          ":PROPERTIES:" ":CREATED: %U" ":END:"
+                          "%?"))
               ("Meeting" :keys "m" :type entry :datetree t :tree-type week
                :template ("* meeting: %^{Description}"
                           ":PROPERTIES:" ":CREATED: %U" ":END:"