From 579767280c163854645b5615a3bbf46ad3e2124c Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sun, 5 Dec 2021 22:28:06 +0100 Subject: [PATCH] Optimize org capture templates --- bundle/bundle--package.el | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index a0cdfa74..2278c696 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -161,29 +161,27 @@ (search . " %i %-12:c"))) (org-agenda-dim-blocked-tasks nil) (org-agenda-inhibit-startup nil) - (org-agenda-span 14) - (org-agenda-start-on-weekday nil) + (org-agenda-span 7) + (org-agenda-start-on-weekday 1) (org-agenda-include-diary t) (org-capture-templates '(("n" "Note" entry (file+headline "notes.org" "Notes") "* %k\n%U\n- %l\n- %K\n%i\n%?") ("t" "Task" entry - (file+headline "planning.org" "Tasks") "* TODO %?\n%u\n%i") + (file+headline "planning.org" "Tasks") "* TODO %?\n%u\n%a") ("a" "Appointment" entry (file+headline "planning.org" "Appointments") "* %?\n%T\n") ("m" "Meeting" entry - (file+headline "planning.org" "Meetings") "* %? :MEETING:\n%T" - :clock-in t) + (file+headline "planning.org" "Meetings") "* %? :MEETING:\n%T" :clock-in t) ("j" "Journal" entry - (file+olp+datetree "journal.org" "Journal") "* %?\nEntered on %U\n %i\n" - :tree-type week) + (file+olp+datetree "journal.org" "Journal") "* %^{Activity}\nEntered on %U\n%i\n%?" :tree-type week) ("l" "Log" entry - (file+olp+datetree "journal.org" "Logbook") "** %U - %^{Activity} :LOG:"))) + (file+olp+datetree "journal.org" "Logbook") "* %U - %^{Activity} :LOG:"))) (org-clock-out-remove-zero-time-clocks t) (org-clock-persist t) (org-clock-rounding-minutes 30)