Added new journal capture template

This commit is contained in:
Random936
2026-04-11 09:26:09 -04:00
parent e6ebde9a26
commit 431c63de82

View File

@@ -21,6 +21,7 @@ Setup ~org~ mode:
(org-agenda-mode . jm/org-roam-refresh-agenda-list))
:config
(setq jm/inbox-file (expand-file-name "inbox.org" jm/notes-directory)
jm/journal-file (expand-file-name "journal.org" jm/notes-directory)
org-ellipsis ""
org-pretty-entities t
org-hide-emphasis-markers t
@@ -38,8 +39,9 @@ Setup ~org~ mode:
org-time-stamp-custom-formats '("%m-%d-%y %a" . "%m-%d-%y %a %I:%M %p")
;; Capture templates
org-capture-templates '(("i" "Inbox" entry (file jm/inbox-file)
"* TODO %^{Task}\nSCHEDULED: %^t DEADLINE: %^t")))
org-capture-templates
'(("i" "Inbox" entry (file jm/inbox-file) "* TODO %^{Task}\nSCHEDULED: %^t DEADLINE: %^t")
("j" "Journal" entry (file jm/journal-file) "* %<%Y-%m-%d> - %?")))
(jm/leader-keys
"oa" '(org-agenda :which-key "Org agenda")