Skip to content

Instantly share code, notes, and snippets.

@lilactown
Created August 8, 2018 15:33
Show Gist options
  • Save lilactown/a6163def4362e276c73b815302d1a064 to your computer and use it in GitHub Desktop.
Save lilactown/a6163def4362e276c73b815302d1a064 to your computer and use it in GitHub Desktop.
How to fix spacemacs + CIDER 0.18-SNAPSHOT
;; 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