From 783abfbbb37fcfe7057087b1019dba93016a6985 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 16 Jul 2019 01:05:23 +0200 Subject: [PATCH] Changed package source priorities: melpa-stable > gnu > melpa. --- init.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 546bfd1..57937bb 100644 --- a/init.el +++ b/init.el @@ -1,5 +1,5 @@ ;;; init.el --- tastytea's Emacs init file. -;; Time-stamp: <2019-07-15T22:54:57+00:00> +;; Time-stamp: <2019-07-15T23:05:06+00:00> ;;; Commentary: ;; I am using this file with Emacs 26, but most of it will probably work with @@ -12,9 +12,10 @@ '("melpa-stable" . "https://stable.melpa.org/packages/") t) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) -(setq package-archive-priorities '(("gnu" . 1) - ("melpa" . 2) - ("melpa-stable" . 3) +(setq package-archive-priorities '( + ("melpa-stable" . 30) + ("gnu" . 20) + ("melpa" . 10) )) (package-initialize)