From 9884ed062bbc5e37673dc059d844658956682db5 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 11 Mar 2024 11:33:10 +0000 Subject: [PATCH] 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 --- config/org-mode.org | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/config/org-mode.org b/config/org-mode.org index 5a9c237..a2208b7 100644 --- a/config/org-mode.org +++ b/config/org-mode.org @@ -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