Optimize org capture templates

This commit is contained in:
Marcus Kammer 2021-12-05 22:28:06 +01:00
parent f5dbdf4031
commit 579767280c
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -161,29 +161,27 @@
(search . " %i %-12:c"))) (search . " %i %-12:c")))
(org-agenda-dim-blocked-tasks nil) (org-agenda-dim-blocked-tasks nil)
(org-agenda-inhibit-startup nil) (org-agenda-inhibit-startup nil)
(org-agenda-span 14) (org-agenda-span 7)
(org-agenda-start-on-weekday nil) (org-agenda-start-on-weekday 1)
(org-agenda-include-diary t) (org-agenda-include-diary t)
(org-capture-templates (org-capture-templates
'(("n" "Note" entry '(("n" "Note" entry
(file+headline "notes.org" "Notes") "* %k\n%U\n- %l\n- %K\n%i\n%?") (file+headline "notes.org" "Notes") "* %k\n%U\n- %l\n- %K\n%i\n%?")
("t" "Task" entry ("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 ("a" "Appointment" entry
(file+headline "planning.org" "Appointments") "* %?\n%T\n") (file+headline "planning.org" "Appointments") "* %?\n%T\n")
("m" "Meeting" entry ("m" "Meeting" entry
(file+headline "planning.org" "Meetings") "* %? :MEETING:\n%T" (file+headline "planning.org" "Meetings") "* %? :MEETING:\n%T" :clock-in t)
:clock-in t)
("j" "Journal" entry ("j" "Journal" entry
(file+olp+datetree "journal.org" "Journal") "* %?\nEntered on %U\n %i\n" (file+olp+datetree "journal.org" "Journal") "* %^{Activity}\nEntered on %U\n%i\n%?" :tree-type week)
:tree-type week)
("l" "Log" entry ("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-out-remove-zero-time-clocks t)
(org-clock-persist t) (org-clock-persist t)
(org-clock-rounding-minutes 30) (org-clock-rounding-minutes 30)