diff options
author | Can | 2024-12-11 21:46:50 +0100 |
---|---|---|
committer | GitHub | 2024-12-11 21:46:50 +0100 |
commit | 0740a71446abe5227ee44b56301806de3c31046d (patch) | |
tree | 0d46a4a8d27731f0b6fb6c5921ea01156bbe17b2 /.vscode |
Initial commit
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/extensions.json | 5 | ||||
-rw-r--r-- | .vscode/tasks.json | 78 |
2 files changed, 83 insertions, 0 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..7b90cd2 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "effekt-lang.effekt" + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..7b4112f --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,78 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Run Effekt Main", + "type": "shell", + "command": "effekt", + "args": [ + "src/main.effekt" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { + "label": "Run Effekt Tests", + "type": "shell", + "command": "effekt", + "args": [ + "src/test.effekt" + ], + "group": "test", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { + "label": "Nix Run", + "type": "shell", + "command": "nix", + "args": [ + "run" + ], + "group": "none", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { + "label": "Nix Build", + "type": "shell", + "command": "nix", + "args": [ + "build" + ], + "group": "build", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { + "label": "Nix Develop Shell", + "type": "shell", + "command": "nix", + "args": [ + "develop" + ], + "group": "none", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + } + ] +} |