diff --git a/bundle/bundle--org.el b/bundle/bundle--org.el index b87b4ba9..5ece1ad3 100644 --- a/bundle/bundle--org.el +++ b/bundle/bundle--org.el @@ -218,7 +218,7 @@ ;; Purpose: To capture general notes. These notes can optionally be linked to a currently clocked-in task. ;; Fields: Heading, optional task link, initial content, and a timestamp. (add-to-list 'org-capture-templates - `("n" "Note" entry (file+headline "agenda/notes.org" "Notes") + `("n" "Note" entry (file+headline "notes.org" "Notes") ,(concat "* %? :NOTE:\n" ":PROPERTIES:\n" "%(mk/link-to-current-task)\n" @@ -260,7 +260,7 @@ ;; Purpose: To capture activities in a chronological order and automatically start a clock for time tracking. ;; Fields: Timestamp, activity description. (add-to-list 'org-capture-templates - '("l" "Log" entry (file+olp+datetree "agenda/logbook.org") + '("l" "Log" entry (file+olp+datetree "logbook.org") "* %T - %^{Activity} :LOG:\n%?" :clock-in t :empty-lines 1))