Specify org files for custom templates

This commit is contained in:
Marcus Kammer 2020-11-23 21:51:13 +01:00
parent 656121ef9d
commit 0afe7b5930

View file

@ -123,15 +123,15 @@ There are two things you can do about this warning:
org-use-property-inheritance nil
org-export-with-sub-superscripts nil
org-capture-templates (quote
(("t" "Task" entry (file+headline "" "Tasks")
(("t" "Task" entry (file+headline "tasks.org" "Tasks")
"* OPEN %?\n\s %u\n\s %a")
("j" "Journal" entry (file+headline "" "Journal")
("j" "Journal" entry (file+headline "journal.org" "Journal")
"* %<%Y-%m-%d %H:%M:%S %p %Z>\n\s %?")
("a" "Appointment today"
entry (file+headline "" "Appointments")
entry (file+headline "appointments.org" "Appointments")
"* %?\n\s %T\n")
("A" "Appointment"
entry (file+headline "" "Appointments")
entry (file+headline "appointments.org" "Appointments")
"* %?\n\s %u\n\s")))))