diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-07-07 17:25:19 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-07-07 17:40:40 -0700 |
| commit | 21804542a80ce91530969b933424145003b9c57a (patch) | |
| tree | b8cfe7013daf5963a31316b1d70d5891c878859a /emacs | |
| parent | feat(org-mode): add a new file to the agenda: habits.org (diff) | |
| download | emacs.d-21804542a80ce91530969b933424145003b9c57a.tar.gz | |
feat(org-mode): add more TODO keywords
I want some keywords related to reading (books, articles, feeds, etc).
Change-Id: I2c599606b7f537946200dc0e805856d51c9c5b0a
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/616
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to 'emacs')
| -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) |
