This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-07-18
Channels
- # admin-announcements (3)
- # alda (1)
- # boot (85)
- # capetown (4)
- # cider (10)
- # clara (16)
- # cljsrn (3)
- # clojars (35)
- # clojure (83)
- # clojure-austin (8)
- # clojure-brasil (4)
- # clojure-canada (16)
- # clojure-greece (2)
- # clojure-ireland (7)
- # clojure-russia (23)
- # clojure-spec (22)
- # clojure-uk (151)
- # clojurescript (97)
- # core-async (10)
- # cursive (1)
- # datascript (7)
- # datomic (21)
- # defnpodcast (13)
- # devcards (3)
- # emacs (4)
- # events (3)
- # hoplon (18)
- # juxt (4)
- # leiningen (7)
- # mount (4)
- # off-topic (2)
- # om (1)
- # onyx (30)
- # planck (6)
- # proton (81)
- # re-frame (3)
- # reagent (9)
- # rum (10)
- # spacemacs (1)
- # specter (6)
- # testing (7)
- # untangled (66)
- # vim (84)
- # yada (23)
hello guys, I'm new to cider and boot, and I want to configure it to work in emacs (got it from elpa) not inject it in my project
My customizations: in ~/.boot/profiles.boot
(deftask cider "CIDER profile"
[]
(require 'boot.repl)
(swap! @(resolve 'boot.repl/*default-dependencies*)
concat '[[org.clojure/tools.nrepl "0.2.12"]
[cider/cider-nrepl "0.13.0-SNAPSHOT"]
[refactor-nrepl "2.3.0-SNAPSHOT"]
[alembic "0.3.2"]])
(swap! @(resolve 'boot.repl/*default-middleware*)
concat '[cider.nrepl/cider-middleware
refactor-nrepl.middleware/wrap-refactor])
identity)
And in emacs customizations for cider-mode:
"Cider Preffered Build Tool" => "boot"
and "Cider Boot Parameters" => "cider repl -s wait"get it from this tutorial - https://github.com/boot-clj/boot/wiki/Cider-REPL#a-better-way
thank you @delaguardo I'll check this out give it a swirl
@avabinary: > thing is, whenever I start cider-jack-in it wants to open an nREPL with lein If you have a build.boot file in your project, cider should either give you the option of using boot or just use boot automatically.