speccydev/.devcontainer/devcontainer.json

22 lines
413 B
JSON
Raw Normal View History

{
"name": "ZX Spectrum dev tools",
2025-04-27 12:23:58 +00:00
"build": { "dockerfile": "Dockerfile" },
"remoteUser": "ubuntu",
"runArgs": [
"--network=host"
],
"customizations": {
"vscode": {
"extensions": [
"maziac.dezog",
"maziac.asm-code-lens",
"maziac.z80-instruction-set",
"maziac.hex-hover-converter",
"maziac.sna-fileviewer",
"maziac.nex-fileviewer",
"ms-vscode.makefile-tools"
]
}
}
}