//// Configuration of the mini-project for use with Calva
{
//// Autostart the repl and connect it to the editor (Jack-in)
//// https://calva.io/customizing-jack-in-and-connect/#customizing-jack-in
"calva.autoStartRepl": true,
//// If you disable the above setting, you start the repl
//// manually with the command;
//// "Calva: Start a Project REPL and Connect (aka Jack-in)"
//// https://calva.io/connect-sequences/
"calva.replConnectSequences": [
{
"name": "Mini Clojure Project",
"autoSelectForConnect": true,
// "autoSelectForJackIn": true,
"projectRootPath": ["."],
"cljsType": "none",
"projectType": "deps.edn",
"menuSelections": {
"cljAliases": ["test"]
}
}
],
"calva.autoOpenInspector": false
}