11 lines
439 B
EmacsLisp
11 lines
439 B
EmacsLisp
;;; +roam-daily.el -*- lexical-binding: t; -*-
|
|
(setq org-roam-dailies-capture-templates
|
|
'(("l" "Log" entry "* %T %?"
|
|
:target (file+head+olp "%<%Y-%m-%d>.org"
|
|
"#+title: %<%Y-%m-%d>\n#+filetags: %<:%Y:%B:>\n"
|
|
("Log")))
|
|
("g" "Goal" entry "* TODO %? :mit:"
|
|
:target (file+head+olp "%<%Y-%m-%d>.org"
|
|
"#+title: %<%Y-%m-%d>\n#+filetags: %<:%Y:%B:>\n"
|
|
("Goals")))))
|