diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-28 17:27:01 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-28 17:27:01 -0500 |
| commit | 588429135eb7e46cebfd8e97c15efea6cce30849 (patch) | |
| tree | 86078d059dd6139221ad2dafbaf86f5153d32f2e | |
| parent | 4c18402fbde530a21d2fa49a73c5d7239143ee28 (diff) | |
| download | dotemacs-588429135eb7e46cebfd8e97c15efea6cce30849.tar.gz dotemacs-588429135eb7e46cebfd8e97c15efea6cce30849.zip | |
chore:org-roam: Defer org-roam package loading by 1 second
This change defers the loading of the org-roam package by 1 second.
This is a workaround to org-roam not loading soon enough after launch
to have created the necessary capture templates. I'll fix that in an
upcoming org-roam refactor session.
| -rw-r--r-- | modules/org-roam-config.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/org-roam-config.el b/modules/org-roam-config.el index f78b68da3..a6b42ce76 100644 --- a/modules/org-roam-config.el +++ b/modules/org-roam-config.el @@ -19,6 +19,7 @@ ;; ---------------------------------- Org Roam --------------------------------- (use-package org-roam + :defer 1 :commands (org-roam-node-find org-roam-node-insert org-roam-db-autosync-mode) :config ;; Enable autosync mode after org-roam loads |
