Prefer melpa stable

This commit is contained in:
Lars Tveito 2020-03-10 20:17:48 +01:00
parent 74ba7de172
commit d17f314911

View File

@ -165,10 +165,14 @@
archive and is well maintained. archive and is well maintained.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) (setq package-archives
(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/")) '(("gnu" . "https://elpa.gnu.org/packages/")
("MELPA Stable" . "https://stable.melpa.org/packages/")
(add-to-list 'package-pinned-packages '(cider . "melpa-stable") t) ("MELPA" . "https://melpa.org/packages/"))
package-archive-priorities
'(("MELPA Stable" . 10)
("gnu" . 5)
("MELPA" . 0)))
#+END_SRC #+END_SRC
The configuration assumes that the packages listed below are The configuration assumes that the packages listed below are