Skip to content

Commit

Permalink
Update devcontainer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ArshansGithub committed Mar 31, 2024
1 parent f9214ca commit 458ba88
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"name": "WPILib 2024 Development",

"image": "wpilib/roborio-cross-ubuntu",

"settings": {
"terminal.integrated.shell.linux":"/bin/bash"
},

"workspaceMount": "source=${localWorkspaceFolder},target=/root/workspace,type=bind,consistency=cached",
"workspaceFolder": "/root/workspace",

"mounts": [ "source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind" ],

"postCreateCommand": "cd /opt && wget 'https://github.com/wpilibsuite/vscode-wpilib/releases/download/v2024.2.1/vscode-wpilib-2024.2.1.vsix'",
"features": {
},
"customizations": {
"vscode": {
"extensions": ["/opt/vscode-wpilib-2024.2.1.vsix","vscjava.vscode-java-pack","vscjava.vscode-gradle", "akamud.vscode-theme-onedark"],
"extensions": ["/opt/vscode-wpilib-2024.2.1.vsix","vscjava.vscode-java-pack","vscjava.vscode-gradle", "ms-vscode.cpptools", "akamud.vscode-theme-onedark"],
"settings": {
"workbench.colorTheme": "Atom One Dark"
}
}
}
}
}

0 comments on commit 458ba88

Please sign in to comment.