initial commit

This commit is contained in:
2025-12-03 23:19:54 -05:00
commit 300f2e69b0
10 changed files with 6557 additions and 0 deletions

48
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,48 @@
// Configurration of the getting-started 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": "The Get Started REPL",
"autoSelectForConnect": true,
"autoSelectForJackIn": true,
"projectRootPath": ["."],
"cljsType": "none",
"projectType": "deps.edn",
"menuSelections": {
"cljAliases": ["test"]
}
}
],
// The below settings are more suitible for User settings.
// They are included here to make it easier to write guides
// about how to use the project.
// You can also see them as a suggestion for a nice repl
// workflow setup. Move the settings you like to your
// User (global) settings.json file.
// We use the Output “terminal” for evaluation results
// and side effect output.
// See https://calva.io/output/
"calva.outputDestinations": {
"evalResults": "terminal",
"evalOutput": "terminal",
"otherOutput": "terminal"
},
// Auto-open the Calva Inspector when the repl connects.
// (All evaluation results are available in the inspector.)
"calva.autoOpenInspector": true,
"calva.enableInspectorRainbow": true,
// Don't open the REPL prompt window automatically
// We recommend using regular editor files instead.
// See also: https://calva.io/fiddle-files/
// (There's a command for opening the REPL window.)
"calva.autoOpenREPLWindow": false
}