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")))
(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)