Created
June 5, 2018 18:03
-
-
Save rcullito/8947ab74fe79cd0984de2b4d7b2dda42 to your computer and use it in GitHub Desktop.
This file contains 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
(defun custom-cider-jack-in () | |
(interactive) | |
(let ((status-desktop-params "with-profile +figwheel repl")) | |
(set-variable 'cider-lein-parameters status-desktop-params) | |
(message "setting 'cider-lein-parameters") | |
(cider-jack-in))) | |
(defun start-figwheel-cljs-repl () | |
(interactive) | |
(set-buffer "*cider-repl status-react*") | |
(goto-char (point-max)) | |
(insert "(do (use 'figwheel-api) | |
(start) | |
(start-cljs-repl))") | |
(cider-repl-return)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment