From 314cf9536ae85ffdfda1c395aa12b5c5d44c70ca Mon Sep 17 00:00:00 2001 From: Li Chengxi <152497082+lichengxi1@users.noreply.github.com> Date: Tue, 30 Jan 2024 13:30:15 +0800 Subject: [PATCH] Update devcontainer.json --- .devcontainer/devcontainer.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7b4f678..c0ad7ec 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,5 +5,19 @@ "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" + ] + } + } }