From 3355f1740ced1731b2f2f1f6a052f01bed985cd2 Mon Sep 17 00:00:00 2001 From: Ahmed Limem <143096027+Ahmed-Limem@users.noreply.github.com> Date: Tue, 20 Aug 2024 16:30:56 +0100 Subject: [PATCH] Update devcontainer.json --- .devcontainer/devcontainer.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 632f06c..913f95f 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 -} \ No newline at end of file + "overrideCommand": false , + // Add the IDs of extensions you want installed when the container is created. + "customizations": { + "vscode": { + "extensions": [ + "GitHub.copilot" + ] + }, + "codespaces": { + "openFiles": [ + "codespace.md" + ] + } + } +}