mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix doom/info
This commit is contained in:
@ -15,7 +15,8 @@
|
|||||||
ready to be pasted in a bug report on github."
|
ready to be pasted in a bug report on github."
|
||||||
(doom-initialize)
|
(doom-initialize)
|
||||||
(require 'vc-git)
|
(require 'vc-git)
|
||||||
(let ((default-directory doom-emacs-dir))
|
(let ((default-directory doom-emacs-dir)
|
||||||
|
(doom-modules (doom-module-table)))
|
||||||
(format
|
(format
|
||||||
(concat "- OS: %s (%s)\n"
|
(concat "- OS: %s (%s)\n"
|
||||||
"- Emacs: %s (%s)\n"
|
"- Emacs: %s (%s)\n"
|
||||||
@ -64,11 +65,11 @@ ready to be pasted in a bug report on github."
|
|||||||
(async-get
|
(async-get
|
||||||
(async-start
|
(async-start
|
||||||
`(lambda ()
|
`(lambda ()
|
||||||
(setq load-path ',load-path)
|
(let ((noninteractive t)
|
||||||
(load ,(expand-file-name "core/core.el" doom-emacs-dir))
|
(load-path ',load-path)
|
||||||
(load ,(expand-file-name "init.el" doom-emacs-dir))
|
(package-alist ',package-alist))
|
||||||
(load ,(expand-file-name "core/autoload/packages.el" doom-emacs-dir))
|
(load ,(expand-file-name "init.el" doom-emacs-dir))
|
||||||
(doom-get-packages))
|
(doom-get-packages)))
|
||||||
(lambda (p) (setq packages p))))
|
(lambda (p) (setq packages p))))
|
||||||
(cl-loop for pkg in (cl-sort packages #'string-lessp
|
(cl-loop for pkg in (cl-sort packages #'string-lessp
|
||||||
:key (lambda (x) (symbol-name (car x))))
|
:key (lambda (x) (symbol-name (car x))))
|
||||||
|
Reference in New Issue
Block a user