From 4c1264b2529043b0384e4f0f3bf1f8aca83cfe44 Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Sun, 26 Apr 2020 19:24:43 -0500 Subject: emacs: change todo list --- emacs/.emacs.d/org-mode.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'emacs') 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 () -- cgit v1.2.3