-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ | |
(use-package embark-consult | ||
:ensure t | ||
:after (embark consult) | ||
:demand t ; only necessary if you have the hook below | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
oantolin
Author
Owner
|
||
;; if you want to have consult previews as you move around an | ||
;; auto-updating embark collect buffer | ||
:hook | ||
|
@@ -245,6 +246,7 @@ reasonable starting configuration: | |
(use-package embark-consult | ||
:ensure t | ||
:after (embark consult) | ||
:demand t ; only necessary if you have the hook below | ||
;; if you want to have consult previews as you move around an | ||
;; auto-updating embark collect buffer | ||
:hook | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Just to understand, I always found that confusing - since :after is specified, embark-consult will still be loaded lazily after embark and consult? And demand is only necessary in order to not further defer loading because of the hook?