This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-05-30
Channels
- # announcements (9)
- # babashka (22)
- # beginners (25)
- # calva (2)
- # cider (9)
- # clj-on-windows (15)
- # clj-otel (29)
- # clojure (73)
- # clojure-conj (4)
- # clojure-europe (69)
- # clojure-gamedev (4)
- # clojure-nl (1)
- # clojure-norway (19)
- # clojure-sweden (12)
- # clojure-uk (4)
- # clojuredesign-podcast (6)
- # clojurescript (5)
- # clr (52)
- # community-development (2)
- # cursive (5)
- # datahike (3)
- # datalevin (5)
- # datascript (4)
- # datomic (14)
- # dev-tooling (13)
- # events (4)
- # gratitude (12)
- # honeysql (1)
- # hyperfiddle (15)
- # jobs (1)
- # lsp (19)
- # malli (8)
- # meander (2)
- # missionary (10)
- # off-topic (12)
- # polylith (3)
- # reagent (8)
- # reitit (2)
- # remote-jobs (1)
- # shadow-cljs (31)
- # timbre (4)
hey folks! is there some configuration in calva for adding dependencies and injections when a Lein REPL is loaded? I have some code that I have in my global lein configuration that installs libraries only for some profiles of my application (basically debug) and I have some configuration like:
{:user
{:repl
{:dependencies ["philoskim/debux" x.x.x]
:injections [(require 'debux)]}}}
*not entirely accurate because I wrote from my phone but just to get the idea.
Is it possible to move it into a Calva configuration in some way? I saw that the jack-in command that calva does already "hijacks" lein and updates this file, how do I include these things without overwriting what I have?There is currently no way to configure extra injections. Maybe you can put https://calva.io/connect-sequences/#custom-command-line to use?
🙌 1