org: appt and meetings shouldnt have tags

This commit is contained in:
Marcus Kammer 2024-03-21 12:54:06 +01:00
parent 7a073cf324
commit 73620dd26e

View file

@ -245,14 +245,14 @@
;; Fields: Heading, timestamp.
(add-to-list 'org-capture-templates
'("a" "Appointment" entry (file "agenda/appt.org")
"* %? :APPOINTMENT:\n%^{Date}t\n"))
"* %? \n%^{Date}t\n"))
;; Meeting Capture Template
;; Purpose: To capture meeting notes and automatically start a clock for time tracking.
;; Fields: Topic, timestamp, and additional notes.
(add-to-list 'org-capture-templates
'("m" "Meeting" entry (file "agenda/meetings.org")
"* %^{Topic} :MEETING:\n%T\n%?"
"* %^{Topic} \n%T\n%?"
:clock-in t
:empty-lines 1))