Skip to content

Commit 3ee1caf

Browse files
committed
Merge pull request clojure-emacs#112 from bbatsov/mention-melpa
Mentioned the MELPA repository in the README
2 parents 2d8a066 + 1efd370 commit 3ee1caf

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ Provides Emacs font-lock, indentation, and navigation for the
55

66
## Installation
77

8-
Available on the [Marmalade repo](http://marmalade-repo.org/packages/clojure-mode).
8+
Available on both [Marmalade](http://marmalade-repo.org/packages/clojure-mode) and
9+
[MELPA](http://melpa.milkbox.net) repos.
10+
11+
The latest stable version of `clojure-mode` is available on Marmalade.
912

1013
If you're not already using Marmalade, add this to your
1114
`~/.emacs.d/init.el` and load it with `M-x eval-buffer`.
@@ -17,6 +20,20 @@ If you're not already using Marmalade, add this to your
1720
(package-initialize)
1821
```
1922

23+
The version of `clojure-mode` on MELPA is a development snapshot that
24+
might contain more bugs that usual or experimental work and features
25+
in progress. Use it at your own risk!
26+
27+
If you're feeling adventurous and you'd like to use MELPA add this bit
28+
of code instead:
29+
30+
```lisp
31+
(require 'package)
32+
(add-to-list 'package-archives
33+
'("melpa" . "http://melpa.milkbox.net/packages/") t)
34+
(package-initialize)
35+
```
36+
2037
And then you can install:
2138

2239
`M-x package-install [RET] clojure-mode [RET]`

0 commit comments

Comments
 (0)