mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix core libraries not loading
Caused because the load-path is reset to doom-site-load-path in doom-initialize-packages, which was initialized before doom-core-dir was added to it, so core-* libraries couldn't be found.
This commit is contained in:
@ -100,7 +100,7 @@ them."
|
|||||||
(unless (eq force-p 'internal)
|
(unless (eq force-p 'internal)
|
||||||
;; `package-alist'
|
;; `package-alist'
|
||||||
(when (or force-p (not (bound-and-true-p package-alist)))
|
(when (or force-p (not (bound-and-true-p package-alist)))
|
||||||
(setq load-path doom-site-load-path)
|
(setq load-path (cons doom-core-dir doom-site-load-path))
|
||||||
(doom-ensure-packages-initialized 'force))
|
(doom-ensure-packages-initialized 'force))
|
||||||
|
|
||||||
;; `quelpa-cache'
|
;; `quelpa-cache'
|
||||||
|
Reference in New Issue
Block a user