Simplify org capture templates

This commit is contained in:
Evie Litherland-Smith 2024-05-17 11:41:50 +01:00
parent 000bb239e7
commit 24f907232f

15
init.el
View file

@ -658,14 +658,13 @@
("C-c C-n" . org-capture-goto-last-stored)) ("C-c C-n" . org-capture-goto-last-stored))
:custom :custom
(org-capture-templates '(("n" "Note" entry (org-capture-templates '(("n" "Note" entry
(file+datetree "notes.org") (file "notes.org")
"* %?") "* %?"
("t" "Task" entry :prepend t)
(file+datetree "tasks.org") ("t" "Todo" entry
"* TODO [#B] %?") (file "tasks.org")
("r" "Reading List" entry "* TODO [#B] %?"
(file+olp+datetree "reading.org" "Inbox") :prepend t)
"* %?")
))) )))
(use-package org-roam (use-package org-roam