Skip to content

Commit

Permalink
tweak(bootstrap): expand use-package minimally unless in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Aug 15, 2023
1 parent c1b9cc4 commit fc883b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/me-bootstrap.el
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
;; Set `use-package' to verbose when MinEmacs is started in verbose mode
use-package-verbose (cond (minemacs-debug 'debug) (minemacs-verbose t))
;; Defer loading packages by default, use `:demand' to force loading a package
use-package-always-defer t)
use-package-always-defer t
;; Make the expanded code as minimal as possible, do not try to catch errors
use-package-expand-minimally (not minemacs-debug))


(provide 'me-bootstrap)
Expand Down

0 comments on commit fc883b6

Please sign in to comment.