From dfe5a8ddce7220e7f99f56963c01cf38e2823b50 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 14 Apr 2024 15:31:36 +0200 Subject: [PATCH] Add a basic devcontainer config --- .devcontainer/devcontainer.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..314f0530 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -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" + } + } + } + } + } + } +} \ No newline at end of file