Add comment for new early-init.el file

So I know what's this is about next time.
This commit is contained in:
Daniel - 2020-08-15 16:53:19 +02:00
parent ed7266bd65
commit 2ed50ed61f
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 4 additions and 0 deletions

View File

@ -33,6 +33,10 @@
;; * Packages ;; * Packages
(when (< emacs-major-version 27) (when (< emacs-major-version 27)
;; Before Emacs 27.1, we have to do package initialization ourselves. In
;; Emacs 27.1 and later, it's done in early-init.el, and calling
;; `package-initialize' is not necessary anymore. See
;; https://www.gnu.org/software/emacs/news/NEWS.27.1
(load-file (expand-file-name "early-init.el" emacs-d)) (load-file (expand-file-name "early-init.el" emacs-d))
(package-initialize)) (package-initialize))