Skip to content

Instantly share code, notes, and snippets.

@PuercoPop
Created November 11, 2013 05:57
Show Gist options
  • Save PuercoPop/7408590 to your computer and use it in GitHub Desktop.
Save PuercoPop/7408590 to your computer and use it in GitHub Desktop.
(let
((marmalade '("marmalade" . "http://marmalade-repo.org/packages/"))
(melpa '("melpa" . "http://melpa.milkbox.net/packages/"))
(org '("org" . "http://orgmode.org/elpa/")))
(add-to-list 'package-archives marmalade t)
(add-to-list 'package-archives melpa t)
(add-to-list 'package-archives org t))
(package-initialize)
(unless (and (file-exists-p "~/.emacs.d/elpa/archives/marmalade")
(file-exists-p "~/.emacs.d/elpa/archives/gnu")
(file-exists-p "~/.emacs.d/elpa/archives/melpa"))
(package-refresh-contents))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment