From a2896ea0ec3233498b108946f86ea58132c5c316 Mon Sep 17 00:00:00 2001 From: xeruf <27jf@pm.me> Date: Tue, 5 Dec 2023 12:40:46 +0100 Subject: [PATCH] config/doom: add custom org todo sequences --- .config/doom/config.el | 3 ++- .config/doom/user.el##user.janek | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/doom/config.el b/.config/doom/config.el index f655caa..2807829 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -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"))) (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 ;; Org startup - https://orgmode.org/manual/In_002dbuffer-Settings.html diff --git a/.config/doom/user.el##user.janek b/.config/doom/user.el##user.janek index 6ef8648..803b2d2 100644 --- a/.config/doom/user.el##user.janek +++ b/.config/doom/user.el##user.janek @@ -22,6 +22,7 @@ ;(directory-files-recursively (expand-file-name "project/" org-directory) ".org\\'") ;(list (expand-file-name "inbox/")) (list (expand-file-name "agenda/")) + (list (expand-file-name "uni/")) )) ))