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:
parent
919d3685eb
commit
e810718cfa
30
config.org
30
config.org
|
@ -2342,7 +2342,6 @@ Unfortunately, with that power comes a *lot* of configuration work up-front. It
|
||||||
** Basic Configuration
|
** Basic Configuration
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
(setq org-directory "~/org/")
|
(setq org-directory "~/org/")
|
||||||
|
|
||||||
(after! 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-latex-preview t
|
||||||
+org-startup-with-animated-gifs t
|
+org-startup-with-animated-gifs t
|
||||||
org-format-latex-options ; Make latex preview smaller
|
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
|
;; Todo Keywords
|
||||||
org-todo-keywords
|
org-todo-keywords
|
||||||
'((sequence "TODO(t)" "STRT(s)" "WAIT(w)" "|" "DONE(d)")
|
'((sequence
|
||||||
(sequence "PROJ(p)" "NEXT(n)" "WORK(o!)" "HOLD(h@/!)" "|" "FIN(f!/@)")
|
"TODO(t)" "PROJ(p)"
|
||||||
(sequence "|" "KILL(k@)"))
|
"NEXT(n)"
|
||||||
|
"STRT(s!)"
|
||||||
|
"WAIT(w@/!)" "HOLD(h@/!)"
|
||||||
|
"|"
|
||||||
|
"DONE(d!/@)" "PART(r@/@)"
|
||||||
|
"KILL(k@/@)"))
|
||||||
org-todo-keyword-faces
|
org-todo-keyword-faces
|
||||||
'(("STRT" . +org-todo-active)
|
'(("PROJ" . +org-todo-project)
|
||||||
|
("STRT" . +org-todo-active)
|
||||||
("WAIT" . +org-todo-onhold)
|
("WAIT" . +org-todo-onhold)
|
||||||
("KILL" . +org-todo-cancel)
|
("HOLD" . +org-todo-onhold)
|
||||||
("PROJ" . +org-todo-project)
|
("KILL" . +org-todo-cancel))
|
||||||
("WORK" . +org-todo-active)
|
|
||||||
("HOLD" . +org-todo-onhold))
|
|
||||||
|
|
||||||
;; Customize appearance
|
;; Customize appearance
|
||||||
org-hide-emphasis-markers t
|
org-hide-emphasis-markers t
|
||||||
org-hide-leading-stars nil
|
org-hide-leading-stars nil
|
||||||
org-superstar-item-bullet-alist '((42 . 8226)
|
org-superstar-item-bullet-alist
|
||||||
(43 . 8226)
|
'((?* . 8226)
|
||||||
(45 . 8226))))
|
(?+ . 8226)
|
||||||
|
(?- . 8226))))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** Bindings
|
*** Bindings
|
||||||
|
|
Loading…
Reference in a new issue