Add new todo states to #emacs and orgmode

This commit is contained in:
Colin Powell
2019-10-18 10:04:21 -04:00
parent e02fa03dfe
commit 578b1c83a6
3 changed files with 19 additions and 3 deletions

View File

@ -36,14 +36,15 @@
"* %?\nEntered on %U\n"))
org-todo-keywords
'((sequence "TODO(t)" "NEXT(n)" "WAITING(w)" "MAYBE(m)" "|" "DONE(d)"))
'((sequence "TODO(t)" "NEXT(n)" "MAYBE(m)" "|" "DONE(d)" "WONTDO(w)"))
org-todo-keyword-faces
'((("TODO" . (:foreground "red" :weight bold))
("NEXT" . (:foreground "blue"))
("MAYBE" . (:foreground "sea green"))
("WAITING" . (:foreground "forest green")))
("DONE" . (:foreground "light sea green")))
("WAITING" . (:foreground "forest green"))
("WONTDO" . (:foreground "forest green"))
("DONE" . (:foreground "light sea green"))))
org-agenda-span 5
org-agenda-start-day "1d"