From 65ec86ed16f31e3b16c1bc312d73b67265bc87d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Saulius=20Dara=C5=A1ka?= Date: Wed, 22 May 2024 15:17:46 -0700 Subject: [PATCH] Update devcontainer.json --- .devcontainer/devcontainer.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7d19516..504f391 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" + ] + } + } }