Skip to content

Commit ddf824b

Browse files
committed
Update the installation instructions
1 parent ff3cb23 commit ddf824b

File tree

1 file changed

+21
-8
lines changed

1 file changed

+21
-8
lines changed

README.md

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,31 @@ Lastly, `parseedn` is in **alpha** stage, so its API is subject to change.
1919

2020
## Installation
2121

22-
Currently `parseend` is not part of [MELPA](http://melpa.milkbox.net/), so the
23-
best way to install it is by getting your own copy of `parseedn`, *and* its
24-
`parseclj` dependency, and putting it somewhere in your Emacs
25-
[`load-path`](https://www.emacswiki.org/emacs/LoadPath).
22+
Available on the major `package.el` community maintained repos -
23+
[MELPA Stable][] and [MELPA][] repos.
2624

27-
You can just copy-paste this code into your Emacs init file:
25+
MELPA Stable is the recommended repo as it has the latest stable
26+
version. MELPA has a development snapshot for users who don't mind
27+
(infrequent) breakage but don't want to run from a git checkout.
2828

29-
```emacs-lisp
30-
(add-to-list 'load-path "/path/to/your/copy/of/parseclj/")
31-
(add-to-list 'load-path "/path/to/your/copy/of/parseedn/")
29+
You can install `parseedn` using the following command:
30+
31+
<kbd>M-x package-install [RET] parseedn [RET]</kbd>
32+
33+
or if you'd rather keep it in your dotfiles:
34+
35+
```el
36+
(unless (package-installed-p 'parseedn)
37+
(package-install 'parseedn))
3238
```
3339

40+
If the installation doesn't work try refreshing the package list:
41+
42+
<kbd>M-x package-refresh-contents</kbd>
43+
44+
[melpa]: http://melpa.org
45+
[melpa stable]: http://stable.melpa.org
46+
3447
## Usage
3548

3649
- `parseedn-read`

0 commit comments

Comments
 (0)