parent
ae0e95933b
commit
68a5d5ed05
@ -1,3 +1,19 @@
|
||||
;;; early-init.el --- Summary
|
||||
;;
|
||||
;;; Commentary:
|
||||
;;
|
||||
;; Emacs27 introduces early-init.el, which is run before init.el,
|
||||
;; before package and UI initialization happens.
|
||||
;;
|
||||
;;; Code:
|
||||
;;
|
||||
;; Disable package.el in favor of straight.el
|
||||
(setq package-enable-at-startup nil)
|
||||
|
||||
;; Disable cl-functions warnings
|
||||
(setq byte-compile-warnings '(cl-functions))
|
||||
|
||||
|
||||
(provide 'early-init)
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;;; early-init.el ends here
|
||||
|
Loading…
Reference in new issue