aboutsummaryrefslogtreecommitdiff
path: root/spacemacs.el
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-05-26 18:02:11 -0300
committerEuAndreh <eu@euandre.org>2019-05-26 18:02:11 -0300
commitaf905f36f706db06a0125ad3a7175a035c871d38 (patch)
tree85af69ee68d143602b68f44a572cc2b3822eae79 /spacemacs.el
parentmrconfig.ini (diff)
downloaddotfiles-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 ;)
Diffstat (limited to 'spacemacs.el')
-rw-r--r--spacemacs.el12
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"