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)