From 72a18f614d55a7beb101c20ea86b9190c10f16bb Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sat, 24 Feb 2024 19:45:24 -0500 Subject: [PATCH] fix(emacs): sync expected org-roam file name format Signed-off-by: Lucas Sta Maria --- .emacs.d/include/orgconfig.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.emacs.d/include/orgconfig.el b/.emacs.d/include/orgconfig.el index 2833764..c337869 100644 --- a/.emacs.d/include/orgconfig.el +++ b/.emacs.d/include/orgconfig.el @@ -62,10 +62,10 @@ "* %i%? \n %U"))) (setq org-roam-capture-templates '(("n" "default" plain "%?" - :target (file+head "${slug}:${id}.org" "#+title: ${title}\n") + :target (file+head "${slug}-${id}.org" "#+title: ${title}\n") :unnarrowed t) ("N" "encrypted" plain "%?" - :target (file+head "${slug}:${id}.org.gpg" "#+title: ${title}\n") + :target (file+head "${slug}-${id}.org.gpg" "#+title: ${title}\n") :unnarrowed t))) (setq org-refile-targets '(("~/org/gtd.org" :maxlevel . 3) ("~/org/someday.org" :level . 1)