feat(templates): Add quality journal template

This commit is contained in:
Judah Sotomayor 2024-08-29 15:20:06 -04:00
parent ac12d307fa
commit 47facf5c8b
Signed by: judahsotomayor
SSH Key Fingerprint: SHA256:9Dq4ppxhfAjbX+7HLXEt+ROMiIojI6kqQgUyFUJb9lI

View File

@ -813,12 +813,18 @@ I use =r= for this purpose. It is close and goes well with *roam*.
** Journal Environment with org-roam
#+begin_src emacs-lisp
(after! org-roam
(setq org-roam-dailies-capture-templates
`(("d" "default" entry
"* %?"
:target (file+head "%<%Y-%m-%d>.sec.org.age"
"#+title: %<%Y-%m-%d>\n")))))
(setq org-roam-dailies-capture-templates
`(("d" "default" entry "* %?"
:target (file+head "%<%Y-%m-%d>.sec.org.age"
"#+title: %<%Y-%m-%d %A>\n* Where was I today?\n* Where am I at now?\n* Where will I be tomorrow?")))))
#+end_src
#+RESULTS:
* Where was I today?
* Where am I at now?
* Where will I be tomorrow?) |
*** Property getters and setters
These are to fulfill my need to get property values for generating my [[id:6672f401-32a1-49ef-8004-ac77ece67f5b][journal index]].
#+begin_src emacs-lisp