Adjust TODO states

The old system was interesting, but I didn't really use it to its full
potential. The new TODO sequence better reflects how I tend to use TODO
states.
This commit is contained in:
Kiana Sheibani 2024-03-06 01:25:16 -05:00
parent 919d3685eb
commit e810718cfa
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -2342,7 +2342,6 @@ Unfortunately, with that power comes a *lot* of configuration work up-front. It
** Basic Configuration
#+begin_src emacs-lisp
(setq org-directory "~/org/")
(after! org
@ -2356,27 +2355,32 @@ Unfortunately, with that power comes a *lot* of configuration work up-front. It
org-startup-with-latex-preview t
+org-startup-with-animated-gifs t
org-format-latex-options ; Make latex preview smaller
(plist-put org-format-latex-options :scale 0.55)
(plist-put org-format-latex-options :scale 0.55)
;; Todo Keywords
org-todo-keywords
'((sequence "TODO(t)" "STRT(s)" "WAIT(w)" "|" "DONE(d)")
(sequence "PROJ(p)" "NEXT(n)" "WORK(o!)" "HOLD(h@/!)" "|" "FIN(f!/@)")
(sequence "|" "KILL(k@)"))
'((sequence
"TODO(t)" "PROJ(p)"
"NEXT(n)"
"STRT(s!)"
"WAIT(w@/!)" "HOLD(h@/!)"
"|"
"DONE(d!/@)" "PART(r@/@)"
"KILL(k@/@)"))
org-todo-keyword-faces
'(("STRT" . +org-todo-active)
'(("PROJ" . +org-todo-project)
("STRT" . +org-todo-active)
("WAIT" . +org-todo-onhold)
("KILL" . +org-todo-cancel)
("PROJ" . +org-todo-project)
("WORK" . +org-todo-active)
("HOLD" . +org-todo-onhold))
("HOLD" . +org-todo-onhold)
("KILL" . +org-todo-cancel))
;; Customize appearance
org-hide-emphasis-markers t
org-hide-leading-stars nil
org-superstar-item-bullet-alist '((42 . 8226)
(43 . 8226)
(45 . 8226))))
org-superstar-item-bullet-alist
'((?* . 8226)
(?+ . 8226)
(?- . 8226))))
#+end_src
*** Bindings