summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/org-mode.el10
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 ()