Include vscode devcontainer config

This commit is contained in:
Matt Harlum 2023-09-16 17:28:14 +00:00
parent cf972552a9
commit d47e26cd06
2 changed files with 32 additions and 1 deletions

View File

@ -0,0 +1,28 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "amiga-gcc-amitools",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "liv2/amiga-gcc-amitools:latest",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
"onCreateCommand": "rm -f /root/.gitconfig",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.cpptools-extension-pack",
"eamodio.gitlens",
"gigabates.m68k-lsp"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}

View File

@ -23,5 +23,8 @@
"ndkcompat.h": "c",
"device.h": "c"
},
"C_Cpp.errorSquiggles": "enabled"
"C_Cpp.errorSquiggles": "enabled",
"m68k.includePaths": [
"/opt/amiga/m68k-amigaos/ndk-include"
]
}