From 7c921c45737a888cfac18c99e3da3607366bb5b1 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Sun, 15 Nov 2020 12:58:31 +0100 Subject: [PATCH] Customize org capture templates --- bundle/bundle--package.el | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index acfbb2b2..70a22074 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -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)