Moved capture templates to notes directory
This commit is contained in:
parent
eb40e9070f
commit
708d9ef935
@ -1,8 +0,0 @@
|
|||||||
* Information
|
|
||||||
|
|
||||||
Name: ${title}
|
|
||||||
Description: %^{Description}
|
|
||||||
|
|
||||||
* Todo Items
|
|
||||||
|
|
||||||
- [ ] %?
|
|
@ -1,3 +0,0 @@
|
|||||||
* TODO ${title}
|
|
||||||
|
|
||||||
%?
|
|
@ -1,31 +0,0 @@
|
|||||||
* Daily Todo Items
|
|
||||||
|
|
||||||
** Habits
|
|
||||||
|
|
||||||
- [ ] Shave
|
|
||||||
- [ ] Shower
|
|
||||||
- [ ] Brush Teeth
|
|
||||||
- [ ] Wash Face
|
|
||||||
|
|
||||||
** Gym Regimen
|
|
||||||
|
|
||||||
Do 2-3 sets of each exercise listed below.
|
|
||||||
|
|
||||||
- [ ] Rowing - Until tired.
|
|
||||||
- [ ] Squats - With heals until more flexible.
|
|
||||||
- [ ] Bench Press/Dumbbells
|
|
||||||
- [ ] Lat Pull-Downs
|
|
||||||
|
|
||||||
** Tasks
|
|
||||||
|
|
||||||
*High Priority*
|
|
||||||
|
|
||||||
- [ ]
|
|
||||||
|
|
||||||
*Medium Priority*
|
|
||||||
|
|
||||||
- [ ] %?
|
|
||||||
|
|
||||||
*Low Priority*
|
|
||||||
|
|
||||||
- [ ]
|
|
@ -681,13 +681,18 @@ Visual fill column is a package that allows you to center text and add borders t
|
|||||||
Org-roam is a plain-text knowledge management system. It brings some of Roam's more powerful features into the Org-mode ecosystem such as org-file linking, etc.
|
Org-roam is a plain-text knowledge management system. It brings some of Roam's more powerful features into the Org-mode ecosystem such as org-file linking, etc.
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(setq jm/org-roam-directory "~/Notes")
|
(setq jm/org-roam-directory (expand-file-name "~/Notes"))
|
||||||
(unless (file-directory-p jm/org-roam-directory)
|
(unless (file-directory-p jm/org-roam-directory)
|
||||||
(make-directory jm/org-roam-directory))
|
(make-directory jm/org-roam-directory))
|
||||||
|
|
||||||
|
(setq jm/org-roam-templates-directory
|
||||||
|
(expand-file-name "templates" jm/org-roam-directory))
|
||||||
|
|
||||||
|
(unless (file-directory-p jm/org-roam-templates-directory)
|
||||||
|
(make-directory jm/org-roam-templates-directory))
|
||||||
|
|
||||||
(use-package org-roam
|
(use-package org-roam
|
||||||
:ensure t
|
:ensure t
|
||||||
:defer
|
|
||||||
:custom
|
:custom
|
||||||
(org-roam-directory jm/org-roam-directory)
|
(org-roam-directory jm/org-roam-directory)
|
||||||
:bind (("C-c n l" . org-roam-buffer-toggle)
|
:bind (("C-c n l" . org-roam-buffer-toggle)
|
||||||
@ -702,22 +707,22 @@ Org-roam is a plain-text knowledge management system. It brings some of Roam's m
|
|||||||
:config
|
:config
|
||||||
;; If you're using a vertical completion framework, you might want a more informative completion interface
|
;; If you're using a vertical completion framework, you might want a more informative completion interface
|
||||||
(setq org-roam-capture-templates
|
(setq org-roam-capture-templates
|
||||||
'(("d" "Default" plain "%?"
|
`(("d" "Default" plain "%?"
|
||||||
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
||||||
:unnarrowed t)
|
:unnarrowed t)
|
||||||
("p" "Project" plain
|
("p" "Project" plain
|
||||||
(file "~/.emacs.d/capture-templates/Project.org")
|
(file ,(expand-file-name "project.org" jm/org-roam-templates-directory))
|
||||||
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
||||||
:unnarrowed t)
|
:unnarrowed t)
|
||||||
("t" "Todo Item" plain
|
("t" "Todo Item" plain
|
||||||
(file "~/.emacs.d/capture-templates/Todo.org")
|
(file ,(expand-file-name "todo.org" jm/org-roam-templates-directory))
|
||||||
:target (file+head "todo/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
:target (file+head "todo/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
||||||
:unnarrowed t)))
|
:unnarrowed t)))
|
||||||
(setq org-roam-dailies-capture-templates
|
(setq org-roam-dailies-capture-templates
|
||||||
'(("d" "Default" entry "* %?" :target
|
`(("d" "Default" entry "* %?" :target
|
||||||
(file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n"))
|
(file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n"))
|
||||||
("t" "Daily Todos" entry
|
("t" "Daily Todos" entry
|
||||||
(file "~/.emacs.d/capture-templates/daily.org")
|
(file ,(expand-file-name "daily.org" jm/org-roam-templates-directory))
|
||||||
:target (file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n")
|
:target (file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n")
|
||||||
:unnarrowed t)))
|
:unnarrowed t)))
|
||||||
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
|
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user