From 153b24cf0c8d4d5d7e20d2d546167f5ea6a28d03 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 20 Oct 2020 09:45:39 +0200 Subject: emacs: make the linter happy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- .emacs.d/early-init.el | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to '.emacs.d/early-init.el') diff --git a/.emacs.d/early-init.el b/.emacs.d/early-init.el index 2f62e61..52d3e66 100644 --- a/.emacs.d/early-init.el +++ b/.emacs.d/early-init.el @@ -26,7 +26,7 @@ ;;; Commentary: ;; ;; early-init.el support was added in GNU Emacs 27.x, and it will be loaded before init.el and -;; before many other elements which are relevant for GNU Emacs. Thus, we should be very cautious as +;; before many other elements which are relevant for GNU Emacs. Thus, we should be very cautious as ;; to what we put in here. ;;; Code: @@ -51,14 +51,16 @@ (require 'package) (setq package-archives - '(("gnu" . "https://elpa.gnu.org/packages/") - ("MELPA Stable" . "https://stable.melpa.org/packages/") - ("MELPA" . "https://melpa.org/packages/") - ("org" . "https://orgmode.org/elpa/")) - package-archive-priorities - '(("MELPA Stable" . 15) - ("org" . 10) - ("gnu" . 5) - ("MELPA" . 0))) + '(("gnu" . "https://elpa.gnu.org/packages/") + ("MELPA Stable" . "https://stable.melpa.org/packages/") + ("MELPA" . "https://melpa.org/packages/") + ("org" . "https://orgmode.org/elpa/")) + package-archive-priorities + '(("MELPA Stable" . 15) + ("org" . 10) + ("gnu" . 5) + ("MELPA" . 0))) + +(provide 'early-init) ;;; early-init.el ends here -- cgit v1.2.3