Update capture templates to go with re-organised org directory

All capture templates now go to specific olp in inbox.org and create a
datetree, working more to the GTD/zettelkasten style of inbox-ing
quickly and sorting/pruning at a later stage
This commit is contained in:
Evie Litherland-Smith 2024-03-11 11:33:10 +00:00
parent 0a4ba64449
commit 9884ed062b

View file

@ -61,27 +61,23 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
#+begin_src emacs-lisp :results output silent
(setq org-capture-templates
'(("n" "Note" entry
(file+datetree "inbox.org")
"* %?"
:tree-type month)
(file+olp+datetree "inbox.org" "Notes")
"* %?")
("t" "Task" entry
(file+datetree "inbox.org")
"* TODO %?"
:tree-type month)
(file+olp+datetree "inbox.org" "Tasks")
"* TODO %?")
("c" "Calendar Event" entry
(file+datetree "calendar/inbox.org")
"* %?\n%^t\n\n%i"
:tree-type month)
(file+olp+datetree "inbox.org" "Calendar")
"* %?\n%^t\n\n%i")
("r" "Reading List" entry
(file+headline "reading.org" "Inbox")
(file+olp+datetree "inbox.org" "Reading List")
"* %?")
("m" "Email Workflow")
("mf" "Follow Up" entry
(file+datetree "inbox.org")
"* TODO Follow up with %:fromname on %a\nDEADLINE: %^{deadline}t\n\n%i"
:tree-type month)
(file+olp+datetree "inbox.org" "Tasks")
"* TODO Follow up with %:fromname on %a\nDEADLINE: %^{deadline}t\n\n%i")
("mr" "Read Later" entry
(file+headline "reading.org" "Email")
(file+olp+datetree "inbox.org" "Reading List")
"* TODO Read %:subject\nSCHEDULED: %^{scheduled}t\n\n%i")
))
#+end_src