Skip to content

Commit a01598e

Browse files
Update devcontainer.json
Added GitHub Copilot extension and default open file "codespace.md"
1 parent 6a7ac61 commit a01598e

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

.devcontainer/devcontainer.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
11
{
22
//Name this configuration
33
"name": "Codespace for Skills!",
4+
45
//Use the base codespace image
56
"image": "mcr.microsoft.com/vscode/devcontainers/universal:latest",
67

78
"remoteUser": "codespace",
8-
"overrideCommand": false
9+
"overrideCommand": false,
10+
11+
// Add the IDs of extensions you want installed when the container is created.
12+
"customizations":
13+
{
14+
"vscode":
15+
{
16+
"extensions":
17+
[
18+
"GitHub.copilot"
19+
]
20+
},
21+
"codespaces":
22+
{
23+
"openFiles":
24+
[
25+
"codespace.md"
26+
]
27+
}
28+
}
929
}

0 commit comments

Comments
 (0)