diff --git a/README.md b/README.md index ef1e024..c299aeb 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,16 @@ _Since it is my personal file, it may make assumptions about my own environment. With that caveat out of the way, here is some basic documentation about my tools and aliases (there are additional examples in the comments in the `deps.edn` file itself). _Note: I have recently cleaned this file up and removed a lot of aliases I no longer use!_ +TL;DR: add the following dependency and then start a REPL with `clj -M:dev/repl` (optionally with other aliases to bring in more tooling): + +```clojure +:aliases +{:dev/repl + {io.github.seancorfield/dot-clojure + {:git/tag "v1.0.0" + :git/sha "799b492"}}} +``` + ## Basic Tools These are installed via `clojure -Ttools install ...` and usable via `clojure -T` with the tool name. diff --git a/deps.edn b/deps.edn index 0465452..5278952 100644 --- a/deps.edn +++ b/deps.edn @@ -45,8 +45,9 @@ ;; - clojure -M:nrepl:dev/repl ;; - clojure -M:fig:build:dev/repl :dev/repl {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] - :extra-deps [io.github.seancorfield/dot-clojure - {:git/sha "06fa9283f12754a541a8f1e1ef29bf86a1fd50f5"}] + :extra-deps {io.github.seancorfield/dot-clojure + {:git/tag "v1.0.0" + :git/sha "799b492"}} :main-opts ["-e" "((requiring-resolve 'org.corfield.dev.repl/start-repl))"]} ;; - in case you need precompiled code on your classpath: :classes {:extra-paths ["classes"]}