Added Daily

This commit is contained in:
James Patrick 2023-01-01 17:03:51 -05:00
parent 7f087e2401
commit bedcb465ed
2 changed files with 11 additions and 0 deletions

View File

@ -102,3 +102,4 @@ If it is an absolute path return `+org-capture-work-todo-file' verbatim."
(load! "org/+babel-diff")
(load! "org/+roam-daily")

10
emacs/org/+roam-daily.el Normal file
View File

@ -0,0 +1,10 @@
;;; +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")))))