mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-21 19:18:41 +00:00
[emacs] Add roam capture template for work notes
This commit is contained in:
parent
208778e145
commit
2a88a8441d
1 changed files with 13 additions and 0 deletions
|
@ -868,6 +868,19 @@ Powerful cross-linked note-taking.
|
|||
|
||||
https://orgroam.com
|
||||
|
||||
**** Capture templates
|
||||
#+begin_src emacs-lisp
|
||||
(setq org-roam-capture-templates
|
||||
'(("d" "default" plain "%?" :if-new
|
||||
(file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}
|
||||
")
|
||||
:unnarrowed t)
|
||||
("w" "work" plain "%?" :if-new
|
||||
(file+head "aweber/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}
|
||||
")
|
||||
:unnarrowed t)))
|
||||
#+end_src
|
||||
|
||||
**** Add backlinks to org-roam exports
|
||||
|
||||
Adapted from https://org-roam.readthedocs.io/en/master/org_export/.
|
||||
|
|
Loading…
Reference in a new issue