diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-15 08:21:23 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-15 08:21:23 +0000 |
commit | 6d9c9238ac06a7bb57d5a24a73e5c86516fd7bba (patch) | |
tree | b933de9c4653c99945b01d8a0f5ecd7b724306f7 | |
parent | 65602f096b72095af6c0f375bc8e00e379649c38 (diff) |
attempting to solve bug with daily note timestamp
By using the correct formulation of use-package (setting variables with
:config and therefore setting them after org-roam has loaded.)
Diffstat (limited to '')
-rw-r--r-- | doom.d/config.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doom.d/config.el b/doom.d/config.el index 5bbeb44..16927e4 100644 --- a/doom.d/config.el +++ b/doom.d/config.el @@ -79,10 +79,13 @@ matt@matthewlemon.com") ;; org-roam (use-package org-roam + :ensure t :custom (org-roam-directory "~/org-roam") + :config (setq org-roam-dailies-directory "daily/") - (org-roam-complete-everywhere t) + (org-roam-complete-everywhere) + (org-roam-db-autosync-mode) (setq org-roam-capture-templates '(("d" "default" plain "%?" |