Last active
July 11, 2024 07:53
-
-
Save friemen/5153156d765265fe5c13 to your computer and use it in GitHub Desktop.
My Leiningen profiles.clj
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
;; put this into profiles.clj in ~/.lein folder | |
{:user {:jvm-opts ^:replace ["-Xmx6G" | |
"-XX:-OmitStackTraceInFastThrow"] | |
:repl-options {:timeout 180000} | |
:plugins [[cider/cider-nrepl "0.49.0"] | |
[refactor-nrepl "3.10.0"] | |
[jonase/eastwood "0.3.14"] | |
[lein-ancient "1.0.0-RC3"] | |
[lein-try "0.4.3"] | |
[lein-cloverage "1.0.13"] | |
[lein-count "1.0.9"] | |
[lein-nvd "1.3.1"]] | |
:middleware [cider-nrepl.plugin/middleware | |
refactor-nrepl.plugin/middleware] | |
:dependencies [[nrepl "0.9.0"] | |
[fipp "0.6.22"] | |
[criterium "0.4.5"] | |
[org.clojure/tools.namespace "0.2.10"]] | |
,,,}} |
Thank you very much!!
Very helpful, thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Same here, had some cider problems and this helped to fix it, thanks!