Added some stuff.

This commit is contained in:
Joachim Nielandt 2022-05-29 20:09:50 +02:00
parent 15276b7946
commit ba1629a301
2 changed files with 15 additions and 0 deletions

View File

@ -91,3 +91,17 @@
;; 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}.org" "#+name: ${slug}\n")
:immediate-finish t
:unnarrowed t))))

View File

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