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 #+begin_src emacs-lisp :results output silent
(setq org-capture-templates (setq org-capture-templates
'(("n" "Note" entry '(("n" "Note" entry
(file+datetree "inbox.org") (file+olp+datetree "inbox.org" "Notes")
"* %?" "* %?")
:tree-type month)
("t" "Task" entry ("t" "Task" entry
(file+datetree "inbox.org") (file+olp+datetree "inbox.org" "Tasks")
"* TODO %?" "* TODO %?")
:tree-type month)
("c" "Calendar Event" entry ("c" "Calendar Event" entry
(file+datetree "calendar/inbox.org") (file+olp+datetree "inbox.org" "Calendar")
"* %?\n%^t\n\n%i" "* %?\n%^t\n\n%i")
:tree-type month)
("r" "Reading List" entry ("r" "Reading List" entry
(file+headline "reading.org" "Inbox") (file+olp+datetree "inbox.org" "Reading List")
"* %?") "* %?")
("m" "Email Workflow") ("m" "Email Workflow")
("mf" "Follow Up" entry ("mf" "Follow Up" entry
(file+datetree "inbox.org") (file+olp+datetree "inbox.org" "Tasks")
"* TODO Follow up with %:fromname on %a\nDEADLINE: %^{deadline}t\n\n%i" "* TODO Follow up with %:fromname on %a\nDEADLINE: %^{deadline}t\n\n%i")
:tree-type month)
("mr" "Read Later" entry ("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") "* TODO Read %:subject\nSCHEDULED: %^{scheduled}t\n\n%i")
)) ))
#+end_src #+end_src