From eb40e9070fbb38ac3a9c175845282bfa84772fa7 Mon Sep 17 00:00:00 2001 From: Random936 Date: Sun, 5 Nov 2023 13:52:38 -0800 Subject: [PATCH] Added in progress todo state to emacs config --- .emacs.d/config.org | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index f478cc9..de69436 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -583,10 +583,11 @@ Creates a function to refresh the ~org-agenda-files~ variable to be set to inclu *** Custom States -Adds custom states to tasks such as ~NEXT~, ~CANCELLED~, etc. +Adds custom states to tasks such as ~IN PROGRESS~, ~CANCELLED~, etc. I've also added some changes to the color of the todo items based on the status. For example, turning the task face orange if it is /in progress/. #+begin_src emacs-lisp -(setq org-todo-keywords '((sequence "TODO(t)" "|" "DONE(d)" "CANCELLED(c)"))) +(setq org-todo-keyword-faces '(("IN PROGRESS" . (:foreground "orange" :weight bold)))) +(setq org-todo-keywords '((sequence "TODO(t)" "IN PROGRESS(i)" "|" "DONE(d)" "CANCELLED(c)"))) #+end_src *** Refresh Checkboxes