diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2020-04-26 19:24:43 -0500 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2021-02-06 10:39:37 -0600 |
commit | 4c1264b2529043b0384e4f0f3bf1f8aca83cfe44 (patch) | |
tree | 9807793142ffd1bddc67812563395544322bbe42 /emacs | |
parent | 76eeb20885a65acba2002964b63271bbf4b6066b (diff) |
emacs: change todo list
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/org-mode.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/emacs/.emacs.d/org-mode.el b/emacs/.emacs.d/org-mode.el index 83dc782..3d9de33 100644 --- a/emacs/.emacs.d/org-mode.el +++ b/emacs/.emacs.d/org-mode.el @@ -1,7 +1,7 @@ ;; --- CUSTOM DEFINITIONS AND FUNCTIONS --- (setq ;; list of TODO statuses that are actionable - bab/org-todos-actionable '("TODO" "IN-PROGRESS") + bab/org-todos-actionable '("TODO" "STARTED") ) (defun bab/org-get-todo (entry) @@ -96,12 +96,12 @@ ;; TODO states and sequences org-todo-keywords - '((sequence "TODO(t)" "IN-PROGRESS(p)" "WAIT(w)" "|" "DONE(d)") + '((sequence "TODO(t)" "STARTED(s)" "WAIT(w)" "|" "DONE(d)") (sequence "|" "CANCELED(x)")) org-todo-keyword-faces - '(("WAIT" . (:foreground "DodgerBlue1")) - ("IN-PROGRESS" . "magenta1") - ("CANCELED" . (:foreground "snow4"))) + '(("WAIT" . (:foreground "DodgerBlue1")) + ("STARTED" . (:foreground "orchid1")) + ("CANCELED" . (:foreground "snow4"))) ;; Blank capture templates, so local config can add to it org-capture-templates () |