diff --git a/README.org b/README.org index 3bfc6ff..dd875cc 100644 --- a/README.org +++ b/README.org @@ -569,15 +569,15 @@ 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+headline "inbox.org" "Note") - "* %?" - :prepend t - :empty-lines 1) + (file "inbox.org") + "* %?") ("t" "Task" entry - (file+headline "inbox.org" "Task") + (file+headline "tasks.org" "Inbox") "* TODO %?" - :prepend t - :empty-lines 1) + :prepend t) + ("r" "Reading List" entry + (file+headline "readling_list.org" "Inbox") + "* %?") ("m" "Email Workflow") ("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")