Update capture templates
This commit is contained in:
parent
886b7d5b29
commit
f67b245edc
1 changed files with 9 additions and 2 deletions
|
@ -167,8 +167,7 @@
|
||||||
;; A task can be everything to do which involves some kind of physical activity.
|
;; A task can be everything to do which involves some kind of physical activity.
|
||||||
(add-to-list 'org-capture-templates
|
(add-to-list 'org-capture-templates
|
||||||
`("t" "Task" entry (file "agenda/tasks.org")
|
`("t" "Task" entry (file "agenda/tasks.org")
|
||||||
,(format "* TODO %%? :TASK:\n:PROPERTIES:\n:ID: %s\n:END:\nEntered on %%U\n%%a"
|
,(format "* TODO %%? :TASK:\n:PROPERTIES:\n:ID: %s\n:END:\nEntered on %%U\n%%a" (org-id-new))))
|
||||||
(org-id-new))))
|
|
||||||
|
|
||||||
;; A journal is an unordered collection of thougths and ideas.
|
;; A journal is an unordered collection of thougths and ideas.
|
||||||
(add-to-list 'org-capture-templates
|
(add-to-list 'org-capture-templates
|
||||||
|
@ -211,6 +210,14 @@
|
||||||
'("H" "How Might We" entry (file+headline "interviews.org" "HMW Questions")
|
'("H" "How Might We" entry (file+headline "interviews.org" "HMW Questions")
|
||||||
"* HOW MIGHT WE %? :HMW:\n%U\n** Interviewee: %^{Interviewee}\n** Context: %^{Context}\n"))
|
"* 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
|
(add-to-list 'org-capture-templates
|
||||||
'("a" "Achievement" entry (file+datetree "achievements.org")
|
'("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"))
|
"* %^{Achievement Title} :ACHIEVEMENT:\n:PROPERTIES:\n:Project: %^{Project Name}\n:Date: %T\n:END:\n- Description: %?\n- Impact: %^{Impact}\n- Associated Tasks: %^{Tasks}\n"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue