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:
parent
85591ca296
commit
77ac164651
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue