You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
468 B
20 lines
468 B
;;; 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
|