Compare commits

..

2 Commits

Author SHA1 Message Date
6a42718f36 Fixed person note template. 2022-05-29 20:14:13 +02:00
ba1629a301 Added some stuff. 2022-05-29 20:09:50 +02:00
2 changed files with 18 additions and 0 deletions

View File

@ -91,3 +91,20 @@
;; modify the evil escape key sequence - this was originally 'jk' and very annoying ;; modify the evil escape key sequence - this was originally 'jk' and very annoying
(setq-default evil-escape-key-sequence "pz") (setq-default evil-escape-key-sequence "pz")
; configure org-roam
(after! org-roam
(setq org-roam-capture-templates
`(("n" "default note" plain "%?"
:if-new
(file+head "%<%Y%m%d%H%M%S>-${slug}.org"
"#+title: ${title}\n#+filetags: \n\n")
:unnarrowed t)
("p" "person" plain "%?"
:if-new
(file+head "person/${slug}.org" "#+name: ${slug}\n")
:immediate-finish t
:unnarrowed t))))
; enable chezmoi
(use-package chezmoi)

View File

@ -61,3 +61,4 @@
(package! typescript-mode) (package! typescript-mode)
; chezmoi management functions ; chezmoi management functions
(package! chezmoi) (package! chezmoi)