summaryrefslogtreecommitdiffstats
path: root/lisp/init-org.el
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2019-11-25 20:19:06 +0100
committerMartin Polden <mpolden@mpolden.no>2019-11-25 20:19:06 +0100
commitb543964e7659dd025d3f52d5051665fbeac8ccb1 (patch)
tree0c4155e575c9b6ef718593dd78f5717312d77941 /lisp/init-org.el
parent9563ac30359331f04784d57aae593d2ed3f6f506 (diff)
Add state for waiting tasks
Diffstat (limited to 'lisp/init-org.el')
-rw-r--r--lisp/init-org.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index b9551ec..42315db 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -43,6 +43,9 @@
;; indent code blocks the same way as the language major mode
(setq org-src-tab-acts-natively t)
+ ;; define todo states
+ (setq org-todo-keywords '((sequence "TODO" "WAIT" "DONE")))
+
;; C-c captures tasks
(global-set-key (kbd "C-c c") 'org-capture))