diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..3f6a62f656 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -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" + } + } + } + } + } + } +} \ No newline at end of file