From f67b245edc99295d96d098b3d41176d5d3b073b1 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Fri, 29 Sep 2023 17:29:22 +0200 Subject: [PATCH] Update capture templates --- bundle/bundle--org.el | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/bundle/bundle--org.el b/bundle/bundle--org.el index 6efda255..34f284f2 100644 --- a/bundle/bundle--org.el +++ b/bundle/bundle--org.el @@ -167,8 +167,7 @@ ;; A task can be everything to do which involves some kind of physical activity. (add-to-list 'org-capture-templates `("t" "Task" entry (file "agenda/tasks.org") - ,(format "* TODO %%? :TASK:\n:PROPERTIES:\n:ID: %s\n:END:\nEntered on %%U\n%%a" - (org-id-new)))) + ,(format "* TODO %%? :TASK:\n:PROPERTIES:\n:ID: %s\n:END:\nEntered on %%U\n%%a" (org-id-new)))) ;; A journal is an unordered collection of thougths and ideas. (add-to-list 'org-capture-templates @@ -211,6 +210,14 @@ '("H" "How Might We" entry (file+headline "interviews.org" "HMW Questions") "* HOW MIGHT WE %? :HMW:\n%U\n** Interviewee: %^{Interviewee}\n** Context: %^{Context}\n")) +(add-to-list 'org-capture-templates + '("i" "Interview Question" entry (file+headline "interviews.org" "Questions") + "* %^{Interview Topic} :INTERVIEW:\n:PROPERTIES:\n:Project: %^{Project Name}\n:Date: %T\n:END:\n- %?\n")) + +(add-to-list 'org-capture-templates + `("p" "Project" entry (file "projects.org") + ,(format "* %%^{Project Name} :PROJECT:\n:PROPERTIES:\n:ID: %s\n:Start Date: %%T\n:End Date: %%^{End Date}\n:END:\n** Objective\n%%?\n** Challenges\n- [ ] %%^{Challenge 1}\n- [ ] %%^{Challenge 2}\n" (org-id-new)))) + (add-to-list 'org-capture-templates '("a" "Achievement" entry (file+datetree "achievements.org") "* %^{Achievement Title} :ACHIEVEMENT:\n:PROPERTIES:\n:Project: %^{Project Name}\n:Date: %T\n:END:\n- Description: %?\n- Impact: %^{Impact}\n- Associated Tasks: %^{Tasks}\n"))