diff --git a/config.org b/config.org index 8e3ae83..3c93880 100644 --- a/config.org +++ b/config.org @@ -682,7 +682,6 @@ Completion ui, replaces company. (corfu-popupinfo-delay t) (corfu-auto t) (corfu-cycle t) - (corfu-auto-prefix 2) (corfu-auto-delay 0.0) (corfu-preselect-first nil) :init @@ -1489,16 +1488,16 @@ If nil it defaults to `split-string-default-separators', normally (use-package org-roam :requires emacsql-sqlite3 :init - :custom + :config (add-to-list 'org-roam-capture-templates '("t" "telephone call" plain "%?" - :if-new (file+head "telephone/%<%Y%m%d%H%M%S>-${plug}.org" "#+title: CALL %<%Y-%m-%d %H:%M> ${title}\n") + :target (file+head "telephone/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: CALL %<%Y-%m-%d %H:%M> ${title}\n") :unnarrowed t) t) (add-to-list 'org-roam-capture-templates '("p" "project" plain "%?" - :if-new (file+head "projects/${slug}.org" "#+title: ${title}\n#+filetags: :project:\n") + :target (file+head "projects/${slug}.org" "#+title: ${title}\n#+filetags: :project:\n") :unnarrowed t) t) (add-to-list 'org-roam-capture-templates '("s" "Sicherheitenmeldung" plain @@ -1508,6 +1507,7 @@ If nil it defaults to `split-string-default-separators', normally '("m" "Monatsbericht" plain' "*** TODO [#A] Monatsbericht ${title}\n :PROPERTIES:\n :ID: %(org-id-uuid)\n:END:\n%u\n" :target (file+olp "tasks.org" ("Todos" "Monatsberichte"))) t) + :custom (org-roam-database-connector 'sqlite3))) #+END_SRC