Created
August 8, 2018 15:33
-
-
Save lilactown/a6163def4362e276c73b815302d1a064 to your computer and use it in GitHub Desktop.
How to fix spacemacs + CIDER 0.18-SNAPSHOT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; The latest CIDER v0.18-SNAPSHOT bumped the nREPL dependency to 0.4 | |
;; which broke the sayid and clj-refactor nREPL middleware. | |
;; Here's how to disable them until they can be updated | |
(defun dotspacemacs/user-config () | |
;; ... | |
(setq sayid-inject-dependencies-at-jack-in nil) | |
(setq cljr-inject-dependencies-at-jack-in nil) | |
;; ... | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment