Skip to content

Commit

Permalink
Switch to stable MELPA. Fixes #30
Browse files Browse the repository at this point in the history
  • Loading branch information
serras committed May 8, 2015
1 parent 6c034ca commit 6c22813
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dot-emacs.el
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; Add MELPA repository
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
'("melpa-stable" . "http://stable.melpa.org/packages/") t)
(package-initialize)

; Enable Windows-like bindings
Expand Down
6 changes: 4 additions & 2 deletions tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,12 @@ OK, let's move on with the configuration. In the file that has just been opened,
```lisp
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
'("melpa-stable" . "http://stable.melpa.org/packages/") t)
(package-initialize)
```
What this configuration is doing is adding a new repository of packages. Repositories are places where the integrated Emacs package manager looks for new extensions. In this case, we add the [MELPA](http://melpa.milkbox.net/) repository, which provides the packages mentioned throughout this article.
What this configuration is doing is adding a new repository of packages. Repositories are places where the integrated Emacs package manager looks for new extensions. In this case, we add the [MELPA Stable](http://stable.melpa.org/) repository, which provides the packages mentioned throughout this article.

**Note:** there is also an [unstable MELPA repository](http://melpa.org), but we strongly advise to use the stable one.

To save the contents of the file, press `C-x C-s`. `C` is mapped to the Ctrl key in Windows, Linux, and Mac OS X; and the fact that two key combinations are given separated by space means that you need to press `C-x` and then `C-s`, in separate keystrokes.

Expand Down

0 comments on commit 6c22813

Please sign in to comment.