diff options
author | Blendoit <blendoit@gmail.com> | 2021-05-20 19:42:56 -0700 |
---|---|---|
committer | Blendoit <blendoit@gmail.com> | 2021-05-20 19:42:56 -0700 |
commit | f512f046cee789d0e4521df3dfe305aa7ca33815 (patch) | |
tree | adea484849191853a8a155f4367f414a46a26eaf | |
parent | 911ac0e57421e90915bc58f77678f019b33c68ff (diff) |
Disambiguate org-todo-keywords appearance.
-rw-r--r-- | smart-documents.org | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/smart-documents.org b/smart-documents.org index ffae74d..16cf340 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -1047,13 +1047,14 @@ CLOSED: [2021-05-16 Sun] #+begin_src emacs-lisp :tangle yes (setq org-todo-keywords '((sequence "TODO" "|" "DONE") - (sequence "STUCK" "WAITING" "|" "N/A" "DONE") + (sequence "STUCK" "WAITING" "|" "N/A" "COMPLETED") (sequence "CONSTRUCTION" "REVIEWED" "|" "INSTALLED"))) (setq org-todo-keyword-faces '(("STUCK" . (:height 1.6 :background "red" :foreground "white" :weight bold)) ("WAITING" . (:height 1.6 :background "yellow")) - ("N/A" . (:height 1.6 :background "LightSteelBlue3" :foreground "white" :slant italic)))) + ("N/A" . (:height 1.6 :background "LightSteelBlue3" :foreground "white")) + ("COMPLETED" . (:height 1.6 :background "green" :foreground "white")))) #+end_src ** Programming a Smart Documents |