Add reading_list capture template

Move tasks inbox to tasks.org

Remove newlines, only prepend for tasks when capturing
This commit is contained in:
Evie Litherland-Smith 2024-01-05 08:06:12 +00:00
parent c4b211dba7
commit fd8443b53d

View file

@ -569,15 +569,15 @@ 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+headline "inbox.org" "Note") (file "inbox.org")
"* %?" "* %?")
:prepend t
:empty-lines 1)
("t" "Task" entry ("t" "Task" entry
(file+headline "inbox.org" "Task") (file+headline "tasks.org" "Inbox")
"* TODO %?" "* TODO %?"
:prepend t :prepend t)
:empty-lines 1) ("r" "Reading List" entry
(file+headline "readling_list.org" "Inbox")
"* %?")
("m" "Email Workflow") ("m" "Email Workflow")
("mf" "Follow Up" entry (file+olp "mail.org" "Follow Up") ("mf" "Follow Up" entry (file+olp "mail.org" "Follow Up")
"* TODO Follow up with %:fromname on %a\nSCHEDULED:%t\nDEADLINE: %(org-insert-time-stamp (org-read-date nil t \"+2d\"))\n\n%i") "* TODO Follow up with %:fromname on %a\nSCHEDULED:%t\nDEADLINE: %(org-insert-time-stamp (org-read-date nil t \"+2d\"))\n\n%i")