Customize org capture templates

This commit is contained in:
Marcus Kammer 2020-11-15 12:58:31 +01:00
parent e9eae46a4d
commit 7c921c4573

View file

@ -106,7 +106,7 @@ There are two things you can do about this warning:
org-log-done (quote time)
org-startup-folded t
org-startup-truncated nil
org-todo-keywords (quote ((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED")))
org-todo-keywords (quote ((sequence "OPEN" "TODO" "DOING" "|" "DONE")))
org-export-backends (quote (ascii beamer html icalendar latex md))
org-duration-format (quote h:mm)
org-latex-pdf-process (quote ("latexmk -xelatex -shell-escape -quiet -f %f"))
@ -120,7 +120,15 @@ There are two things you can do about this warning:
("shell" . sh)
("plantuml" . fundamental)))
org-use-property-inheritance nil
org-export-with-sub-superscripts nil))
org-export-with-sub-superscripts nil
org-capture-templates (quote
(("t" "Task" entry (file+headline "" "Tasks")
"* OPEN %?\n\s %u\n\s %a")
("j" "Journal" entry (file+headline "" "Journal")
"* %<%Y-%m-%d %H:%M:%S %p %Z>\n\s %?")
("a" "Appointment" entry (file+headline "" "Appointments")
"* %?\n\s %T\n")))))
(use-package helpful
:bind (("C-h f" . #'helpful-callable)