Add reading_list capture template
Move tasks inbox to tasks.org Remove newlines, only prepend for tasks when capturing
This commit is contained in:
parent
c4b211dba7
commit
fd8443b53d
14
README.org
14
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")
|
||||
|
|
Loading…
Reference in a new issue