mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-07 12:47:30 -05:00
fix: doom-initialize-core-packages: extract plist from alist
The doom-package-list is a list of (module :key value ...). To get the plist, apply cdr first.
This commit is contained in:
@ -256,7 +256,7 @@ uses a straight or package.el command directly).")
|
||||
(alist-get 'straight packages)
|
||||
(doom--ensure-straight recipe pin))
|
||||
(doom--ensure-core-packages
|
||||
(seq-filter (fn! (eq (plist-get % :type) 'core))
|
||||
(seq-filter (fn! (eq (plist-get (cdr %) :type) 'core))
|
||||
packages)))))
|
||||
|
||||
(defun doom-initialize-packages (&optional force-p)
|
||||
|
Reference in New Issue
Block a user