diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-11-02 00:51:07 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-11-02 00:51:19 -0400 |
commit | 8b9f13021ce3eef6c3c9ed28acc113dc8cc52e19 (patch) | |
tree | 6cb3f3575a8f603af9e196f68881c212254032c4 /lisp | |
parent | 5457f5552ad91cb9c88552bc22122d3dbd93bc49 (diff) | |
download | emacs.d-8b9f13021ce3eef6c3c9ed28acc113dc8cc52e19.tar.gz |
Change setup for Org TODO keywords
- Assign keys.
- Add 'WAITING' keyword.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-org.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el index da4c723..7c00d82 100644 --- a/lisp/init-org.el +++ b/lisp/init-org.el @@ -2,7 +2,8 @@ (setq org-modules '(org-bibtex org-gnus org-info) org-log-done t - org-todo-keywords '((sequence "TODO" "STARTED" "|" "DONE" "NA(@)")) + org-todo-keywords '((sequence "TODO(t)" "STARTED(s)" "WAITING(w@)" + "|" "DONE(d)" "NA(n@)")) org-log-into-drawer t org-clock-into-drawer t org-use-speed-commands t |