leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
bozhidar 2019-05-18T02:27:42.082Z

:repl-options has an :init key. That’s where you need to put such code.

Ivan Koz 2019-05-18T04:28:41.082300Z

@bozhidar

✦ ➜ lein repl
If there are a lot of uncached dependencies this might take a while ...
nREPL server started on port 43689 on host 127.0.0.1 - <nrepl://127.0.0.1:43689>
REPL-y 0.4.3, nREPL 0.6.0
Clojure 1.10.1-beta2
OpenJDK 64-Bit Server VM 12.0.1+12
Welcome to the magical world of the repl!
core=&gt; *print-namespace-maps*
true
core=&gt; (do (set! *print-namespace-maps* false))
false
core=&gt; *print-namespace-maps*
false
core=&gt; 

Ivan Koz 2019-05-18T04:28:45.082500Z

it works

Chase 2019-05-18T13:43:31.083700Z

Yeah I think I got it working too when I put in my project.clj file. I might be doing something wrong when trying to put it in my .lein/profiles.clj but that's ok for now. Thanks!