diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-10-30 21:24:12 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-10-30 21:24:12 +0000 |
commit | ad420b635b8b8d76e2430d9580c2ba333cecdc9b (patch) | |
tree | b2482852354e9bbb4de1c293ba538033b1ebb7a0 | |
parent | c912e42db559543a7ae96ced458b79f3687f60fe (diff) |
Hopefully fixed the issue with journal
It wasn't appearing in the correct capture window.
-rw-r--r-- | doom.d/config.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doom.d/config.el b/doom.d/config.el index e9f4457..8ef4bcb 100644 --- a/doom.d/config.el +++ b/doom.d/config.el @@ -152,8 +152,8 @@ ;; org capture templates (setq org-capture-templates (quote (("h" "Home Tasks & Notes") - ("x" "Protocol Capture" entry (file+headline "~/org/home.org" "Tasks") - "** %:link - %:description\n%:i\nEntered on %U\n") + ("x" "Protocol Capture" entry (file+olp+datetree "~/org/capture.org" "Web Capture") + "* %^{Title or Comment}\nDescription: %:description\nSource: %:link\n%:initial") ("ht" "Home TODO" entry (file+headline "~/org/home.org" "Tasks") "** TODO %?\nEntered on %U\n" :prepend t) @@ -161,7 +161,7 @@ "** NEXT %?\nEntered on %U\n" :prepend t) ("hN" "Home Note" entry (file+headline "~/org/home.org" "Notes") - "** %?\nEntered on %U\n") + "* %?\nEntered on %U\n") ("hj" "Journal" entry (file+olp+datetree "~/org/journal.org" "Journal") "* %?\nEntered on %U\n") ("hi" "Home Idea" entry (file+headline "~/org/notes.org" "Notes") |