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))
:custom
(org-capture-templates '(("n" "Note" entry
(file+datetree "notes.org")
"* %?")
("t" "Task" entry
(file+datetree "tasks.org")
"* TODO [#B] %?")
("r" "Reading List" entry
(file+olp+datetree "reading.org" "Inbox")
"* %?")
(file "notes.org")
"* %?"
:prepend t)
("t" "Todo" entry
(file "tasks.org")
"* TODO [#B] %?"
:prepend t)
)))
(use-package org-roam