Is there a way to configure autorepl to use vim-jack-in instead of babashka? I don't think babashka can load the project dependencies?
The related config should be g:conjure#client#clojure#nrepl#connection#auto_repl#cmd, but not sure how to connect them.
I couldn't make it work, but I added a simple shortcut for vim-jack-in in the background if anyone is interested
{
"<localleader>'",
function()
vim.cmd("Clj")
vim.api.nvim_win_close(0, false)
end,
desc = "Jack-in",
},
Found a better way that can be triggered by auto repl:
vim.g["conjure#client#clojure#nrepl#connection#auto_repl#cmd"] = vim.fn["jack_in#clj_cmd"]()that's pretty neat, i might use that