chore: add VS Code workspace config with Peacock color

- launch.json: Python debugpy for bterminal.py
- tasks.json: run and install tasks
- settings.json: Peacock green workspace color, Python type checking
This commit is contained in:
Hibryda 2026-03-05 23:14:39 +01:00
parent b659a6a6bd
commit 7d4e5a33c9
3 changed files with 73 additions and 0 deletions

11
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch BTerminal (v1)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/bterminal.py"
}
]
}