diff options
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-org.el | 8 |
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:" |