Gets rid of linter warnings for early-init.el

main
Sergio Alvariño 2 years ago
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…
Cancel
Save