File tree Expand file tree Collapse file tree 1 file changed +28
-5
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +28
-5
lines changed
Original file line number Diff line number Diff line change 1
1
# cider.vim
2
2
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
+
4
16
``` 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" ]]}}
6
19
```
7
20
8
- Cider-nrepl takes care of all other dependencies so you don't need to depend e.g. on cljfmt.
21
+ ### Boot
9
22
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.
12
35
13
36
## Features
14
37
You can’t perform that action at this time.
0 commit comments