diff options
author | Franck Cuny <franck@fcuny.net> | 2021-10-16 08:01:14 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-10-16 08:01:14 -0700 |
commit | b800681a21832f7e6a9ce6b004904b6bc04c352c (patch) | |
tree | 05d572258af19e86ebfd6f32e933aba2603009d7 | |
parent | zsh: add host's name to the prompt (diff) | |
download | emacs.d-b800681a21832f7e6a9ce6b004904b6bc04c352c.tar.gz |
org: define TODO keywords as a sequence
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-org.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-org.el b/emacs/custom/fcuny-org.el index faaae8d..653de9d 100644 --- a/emacs/custom/fcuny-org.el +++ b/emacs/custom/fcuny-org.el @@ -54,7 +54,7 @@ (org-cycle-separator-lines 0) (org-startup-folded 'content) - (org-todo-keywords '((type "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED"))) + (org-todo-keywords '((sequence "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED"))) (org-todo-keyword-faces '(("TODO" . (:foreground "red" :weight bold)) ("STARTED" . (:foreground "red" :weight bold)) |