Added daily todos template to emacs config

This commit is contained in:
Random936 2023-10-10 14:24:24 -07:00
parent 360bd19596
commit c60b1f8b19
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,21 @@
* Daily Todos
** Habits
- [ ] Shave
- [ ] Shower
- [ ] Brush Teeth
** Tasks
*High Priority*
- [ ] %?
*Medium Priority*
- [ ]
*Low Priority*
- [ ]

View File

@ -709,6 +709,11 @@ Org-roam is a plain-text knowledge management system. It brings some of Roam's m
(file "~/.emacs.d/capture-templates/Todo.org")
:target (file+head "todo/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
:unnarrowed t)))
(setq org-roam-dailies-capture-templates
'(("d" "default" plain
(file "~/.emacs.d/capture-templates/daily.org")
:target (file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n")
:unnarrowed t)))
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
(jm/org-roam-refresh-agenda-list)
(org-roam-db-autosync-mode))