diff options
author | EuAndreh <eu@euandre.org> | 2019-05-26 18:02:11 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-05-26 18:02:11 -0300 |
commit | af905f36f706db06a0125ad3a7175a035c871d38 (patch) | |
tree | 85af69ee68d143602b68f44a572cc2b3822eae79 | |
parent | mrconfig.ini (diff) | |
download | dotfiles-af905f36f706db06a0125ad3a7175a035c871d38.tar.gz dotfiles-af905f36f706db06a0125ad3a7175a035c871d38.tar.xz |
Customize org-todo-keyword-faces
Interesting note:
DOING, WAITING and MEETING all have the same color, thus the same visual status.
This helps reinfoce visually WIP limits, since they're not DONE ;)
-rw-r--r-- | spacemacs.el | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/spacemacs.el b/spacemacs.el index 6ff2ef8..095c60d 100644 --- a/spacemacs.el +++ b/spacemacs.el @@ -728,7 +728,17 @@ This is the place where most of your configurations should be done. Unless it is ;; Taken from: ;; - http://cachestocaches.com/2016/9/my-workflow-org-agenda ;; - http://doc.norang.ca/org-mode.html - org-todo-keywords '((sequence "TODO" "NEXT" "WAITING" "INACTIVE" "CANCELLED" "MEETING" "DOING" "|" "DONE")) + org-todo-keywords '((sequence "TODO" "NEXT" "WAITING" "MEETING" "INACTIVE" "CANCELLED" "DOING" "|" "DONE")) + org-todo-keyword-faces '(("TODO" . (:foreground "orange" :weight bold)) + + ("DOING" . (:foreground "white" :weight bold)) + ("WAITING" . (:foreground "white" :weight bold)) + ("MEETING" . (:foreground "white" :weight bold)) + + ("NEXT" . (:foreground "orange" :weight bold)) + + ("CANCELLED" . (:foreground "green" :weight bold)) + ("DONE" . (:foreground "green" :weight bold))) org-agenda-files '("~/ownCloud/txt/TODOs.org") org-columns-default-format "%50ITEM(Task) %10CLOCKSUM %16TIMESTAMP_IA" org-default-notes-file "~/annex/txt/TODOs.org" |