summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfpi2020-07-16 08:39:19 +0200
committerfpi2020-07-17 18:21:22 +0200
commit401a3d11b8a155d9f75507c3e5faa020d33ad961 (patch)
tree1932580d4e36e994f318ff83ea10b385940169b7
parentBundle task organization related settings (diff)
Update todo keywords for projects, ...
Add ACTIVE keyword to use for projects. HOLD for project tasks waiting for other tasks.
-rw-r--r--emacs-init.org18
1 files changed, 10 insertions, 8 deletions
diff --git a/emacs-init.org b/emacs-init.org
index f3a0f44..dd7a764 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -2716,21 +2716,23 @@ digraph hierarch{
[[file:/tmp/todo.png]]
#+begin_src emacs-lisp :noweb-ref org-custom :tangle no
-(org-todo-keywords '((sequence "PLANNING(p)" "NEXT(n)" "INPROGRESS(i!)" "WAITING(w@/!)" "|" "ICEBOX(x@)" "DONE(d)")
- (sequence "S(s)" "DONE(d)")
- (sequence "PHONE(P)" "MEETING(m)" "|" "CANCELLED(c)")
- (sequence "TODO(t)" "|" "DONE(d)")
- (sequence "IDLE(a)")))
+(org-todo-keywords '((sequence "HOLD(h)" "NEXT(n)" "INPROGRESS(i!)" "WAITING(w@/!)" "|" "ICEBOX(x@)" "DONE(d)") ;;todos
+ (sequence "PLANNING(p)" "TODO(t)" "ACTIVE(a)" "|" "CANCELLED(c)" "DONE(d)") ;;projects
+ (sequence "PHONE(P)" "MEETING(m)" "|" "CANCELLED(c)" "DONE(d)")
+ (sequence "TODO(t)" "|" "DONE(d)") ;;habits
+ (sequence "IDLE(b)")))
(org-use-fast-todo-selection t)
(org-todo-keyword-faces
- '(("NEXT" :foreground "light blue" :weight bold)
+ '(("HOLD" :foreground "light gray" :weight bold)
+ ("NEXT" :foreground "light blue" :weight bold)
("INPROGRESS" :foreground "burlywood" :weight bold)
+ ("ACTIVE" :foreground "chocolate" :weight bold)
("DONE" :foreground "forest green" :weight bold)
("WAITING" :foreground "orange" :weight bold)
("ICEBOX" :foreground "orange" :weight normal)
("CANCELLED" :foreground "forest green" :weight bold)
- ("MEETING" :foreground "yellow" :weight bold)
- ("PHONE" :foreground "yellow" :weight bold)
+ ("MEETING" :foreground "yellow3" :weight bold)
+ ("PHONE" :foreground "yellow3" :weight bold)
("IDLE" :foreground "magenta" :weight bold)))
#+end_src