config/doom: add custom org todo sequences

This commit is contained in:
xeruf 2023-12-05 12:40:46 +01:00
parent b81a70c474
commit a2896ea0ec
2 changed files with 3 additions and 1 deletions

View File

@ -351,7 +351,8 @@ Version 2019-11-04 2021-02-16"
(setq org-priority-faces '((65 . error) (66 . "DarkGoldenRod") (67 . warning) (68 . "bisque") (69 . "grey"))) (setq org-priority-faces '((65 . error) (66 . "DarkGoldenRod") (67 . warning) (68 . "bisque") (69 . "grey")))
(push "PERM(e)" (cdr (car org-todo-keywords))) (push "PERM(e)" (cdr (car org-todo-keywords)))
; For writings: +TODO: IDEA(i!) OUTLINE(o!) DRAFT(t!) | REVIEW(r!) DONE(d!) ABANDON(a!) (push '(sequence "IDEA(i!)" "OUTLINE(o!)" "DRAFT(f!)" "|" "REVIEW(v!)" "DONE(d!)" "ABANDON(a!)") org-todo-keywords) ; For Writings
(push '(sequence "Loop(l)" "|" "RELOOP(r)") org-todo-keywords)
; highlight review keyword ; highlight review keyword
;; Org startup - https://orgmode.org/manual/In_002dbuffer-Settings.html ;; Org startup - https://orgmode.org/manual/In_002dbuffer-Settings.html

View File

@ -22,6 +22,7 @@
;(directory-files-recursively (expand-file-name "project/" org-directory) ".org\\'") ;(directory-files-recursively (expand-file-name "project/" org-directory) ".org\\'")
;(list (expand-file-name "inbox/")) ;(list (expand-file-name "inbox/"))
(list (expand-file-name "agenda/")) (list (expand-file-name "agenda/"))
(list (expand-file-name "uni/"))
)) ))
)) ))