From 7abdf30bbb111da29a6d54e1acaae21647da198b Mon Sep 17 00:00:00 2001 From: teknlgyuser Date: Wed, 22 May 2024 20:41:39 +0000 Subject: [PATCH] added customization --- .devcontainer/devcontainer.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7d19516..434e4e4 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,5 +5,18 @@ "image": "mcr.microsoft.com/vscode/devcontainers/universal:latest", "remoteUser": "codespace", - "overrideCommand": false - } + "overrideCommand": false, + // Add the IDs of extensions you want installed when the container is created. + "customizations": { + "vscode": { + "extensions": [ + "GitHub.copilot" + ] + }, + "codespaces": { + "openFiles": [ + "codespace.md" + ] + } + } + }