Added in progress todo state to emacs config

This commit is contained in:
Random936 2023-11-05 13:52:38 -08:00
parent 38dec74c20
commit eb40e9070f

View File

@ -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