Add a basic devcontainer config

This commit is contained in:
Christoph Reiter 2024-04-14 15:30:39 +02:00
parent 942b28fbae
commit d3ed5117b5

View File

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