I’ve setup a template for org-roam-dailies in such a way that
- There is one file per month, so
YYYY-mm.org
- Inside each file, headlines go with a timestamp
(setq org-roam-dailies-directory "daily/dailiesTest/")
(setq org-roam-dailies-capture-templates
'(("d" "default" entry
"* %T %?"
:target (file+head "%<%Y-%m>.org" "#+TITLE: %<%Y-%m>\n"))))
I’ve tried few configurations, and at the moment this setting seems like a sweet spot between
- One-file-per-day, since the amount files is quickly escalating and slowing down my agenda view
- One big file with
datetree
, since I don’t like having three more level of nesting to start with for every new headline and I find having just one big file for my entries unnecessary
However, the headlines have no org-roam ID and I miss the ability of navigating through the notes. Is there a way to add this to my custom template?