Add a basic devcontainer config

This commit is contained in:
Christoph Reiter 2024-04-14 15:31:36 +02:00
parent 11a162b0e5
commit dfe5a8ddce

View File

@ -0,0 +1,18 @@
{
"image": "ghcr.io/msys2/msys2-docker-devcontainer",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "MSYS2-MSYS",
"terminal.integrated.profiles.linux": {
"MSYS2-MSYS": {
"path": "msys2",
"env": {
"MSYSTEM": "MSYS"
}
}
}
}
}
}
}