Skip to content

Commit

Permalink
chore: Add GitHub Copilot extension to devcontainer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasWillemsens committed Jun 14, 2024
1 parent cb34a93 commit 1206593
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
{
// Name this configuration
"name": "Codespace for Skills!",

// Use the base codespace image
"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"
]
}
}
}

0 comments on commit 1206593

Please sign in to comment.