summaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-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))