Update package archive list

I have reordered it a bit, and added MELPA stable.
This commit is contained in:
Gergely Polonkai 2016-11-07 14:00:06 +01:00
parent 699fd49140
commit 2427e2818a
1 changed files with 4 additions and 2 deletions

View File

@ -6,10 +6,12 @@
(require 'package)
(add-to-list 'package-archives
'("gnu" . "http://elpa.gnu.org/packages/"))
(add-to list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/" t))
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/"))
'("melpa" . "https://melpa.org/packages/") t)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/"))
'("marmalade" . "http://marmalade-repo.org/packages/") t)
(package-initialize)
(unless (package-installed-p 'use-package)