From af905f36f706db06a0125ad3a7175a035c871d38 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 26 May 2019 18:02:11 -0300 Subject: 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 ;) --- spacemacs.el | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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" -- cgit v1.2.3