Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 35fefe0

Browse filesBrowse files
committed
README.md
1 parent 20cae6f commit 35fefe0
Copy full SHA for 35fefe0

File tree

Expand file treeCollapse file tree

1 file changed

+28
-5
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+28
-5
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+28-5Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,37 @@
11
# cider.vim
22

3-
Requires [fireplace.vim](https://github.com/tpope/vim-fireplace) and cider-nrepl middleware:
3+
Some additional IDE-like functionality for Clojure development using
4+
[cider-nrepl](https://github.com/clojure-emacs/cider-nrepl).
5+
6+
## Using
7+
8+
Requires [fireplace.vim](https://github.com/tpope/vim-fireplace), cider-nrepl
9+
and refactor-nrepl middlewares:
10+
11+
https://img.shields.io/clojars/v/clojure-emacs/cider-nrepl.svg
12+
https://img.shields.io/clojars/v/refactor-nrepl.svg
13+
14+
### Leiningen
15+
416
```clj
5-
{:user {:plugins [[cider/cider-nrepl "0.9.1"]]}}
17+
{:user {:plugins [[cider/cider-nrepl "0.9.1"]
18+
[refactor-nrepl "1.0.5"]]}}
619
```
720

8-
Cider-nrepl takes care of all other dependencies so you don't need to depend e.g. on cljfmt.
21+
### Boot
922

10-
Some additional IDE-like functionality for Clojure development using
11-
[cider-nrepl](https://github.com/clojure-emacs/cider-nrepl).
23+
```clj
24+
(swap! boot.repl/*default-dependencies*
25+
concat '[[cider/cider-nrepl "0.9.1"]
26+
[refactor-nrepl "1.0.5"])
27+
28+
(swap! boot.repl/*default-middleware* conj
29+
'cider.nrepl/cider-middleware
30+
'refactor-nrepl.middleware/wrap-refactor)
31+
```
32+
33+
Cider-nrepl takes care of all other dependencies so you don't need to depend
34+
e.g. on cljfmt.
1235

1336
## Features
1437

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.