Installation of cider-nrepl

后端 未结 1 1550
既然无缘
既然无缘 2020-12-31 01:13

I\'ve installed CIDER 0.7.0 and now when I start it inside of Emacs (via M-x cider-jack-in RET), I get the following warning:

WA

相关标签:
1条回答
  • 2020-12-31 01:51

    You need to put it into lein project.clj or into global lein configuration. Excerpt from official documentation:

    Use the convenient plugin for defaults, either in your project's project.clj file or in the :user profile in ~/.lein/profiles.clj.

    :plugins [[cider/cider-nrepl "0.7.0"]]
    

    A minimal profiles.clj for CIDER would be:

    {:user {:plugins [[cider/cider-nrepl "0.7.0"]]}}
    
    0 讨论(0)
提交回复
热议问题