diff options
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-org.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/custom/my-org.el b/emacs/custom/my-org.el index bd09819..ac7ad5d 100644 --- a/emacs/custom/my-org.el +++ b/emacs/custom/my-org.el @@ -36,7 +36,8 @@ (setq org-log-into-drawer t) ;; insert state change in the drawer (setq org-cycle-separator-lines 0) (setq org-startup-folded 'content) -(setq org-todo-keywords '((sequence "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED"))) +(setq org-todo-keywords '((sequence "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED") + (sequence "TO-READ(r/!)" "READING(/!)" "|" "READ(R@)"))) (setq org-priority-start-cycle-with-default nil) ;; Start one over/under default value. (setq org-highest-priority ?A) |