aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2020-10-20 09:45:39 +0200
committerMiquel Sabaté Solà <msabate@suse.com>2020-10-20 09:45:39 +0200
commit153b24cf0c8d4d5d7e20d2d546167f5ea6a28d03 (patch)
tree71473b2143002723a0b954043a64dbdc427649a0
parent27d36682321cbfc4aa1e7e5d47cb15b2f5974db7 (diff)
downloaddotfiles-153b24cf0c8d4d5d7e20d2d546167f5ea6a28d03.tar.gz
dotfiles-153b24cf0c8d4d5d7e20d2d546167f5ea6a28d03.zip
emacs: make the linter happy
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
-rw-r--r--.emacs.d/early-init.el22
1 files changed, 12 insertions, 10 deletions
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