What's the secret to getting vim-fireplace to work with deps.edn? I've followed the setup directions as well as I can. In ~/.clojure/deps.edn I have:
{:aliases
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
cider/cider-nrepl {:mvn/version "0.27.3"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
After running clj -A:cider-clj the connection seems to work, but every form I try to evaluate in my code returns Vim(return):E716: Key not present in Dictionary: "response".Does calling the clj command directly work any better?
i.e. clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.42.1"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"