Added org capture templates to repo and added a todo item template

This commit is contained in:
Random936 2023-09-24 21:08:04 -07:00
parent 2bfa14e6ce
commit 468478243e
3 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,8 @@
* Information
Name: ${title}
Description: %^{Description}
* Todo Items
- [ ] %?

View File

@ -0,0 +1,4 @@
* TODO ${title}
%?

View File

@ -684,8 +684,12 @@ Org-roam is a plain-text knowledge management system. It brings some of Roam's m
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
:unnarrowed t)
("p" "Project" plain
(file "~/Notes/Templates/Project.org")
(file "~/.emacs.d/capture-templates/Project.org")
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
:unnarrowed t)
("t" "Todo Item" plain
(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-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
(jm/org-roam-refresh-agenda-list)