Skip to content

Instantly share code, notes, and snippets.

@iani
Created December 20, 2013 14:05
Show Gist options
  • Select an option

  • Save iani/8055265 to your computer and use it in GitHub Desktop.

Select an option

Save iani/8055265 to your computer and use it in GitHub Desktop.
Add 3 major package locations for automatic installation of packages in emacs. (from my org-mode file). Use only the elisp code if you are not using org-mode.
(See:
- http://www.emacswiki.org/emacs/ELPA
- See: http://emacsworld.blogspot.gr/2013/12/a-few-unrelated-emacs-tips.html
)
#+BEGIN_SRC elisp
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
("marmalade" . "http://marmalade-repo.org/packages/")
("melpa" . "http://melpa.milkbox.net/packages/")))
#+END_SRC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment