Skip to content

Commit

Permalink
another try
Browse files Browse the repository at this point in the history
  • Loading branch information
sigalrmp committed Jan 13, 2025
1 parent 4ec1d76 commit 4ad8841
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,31 @@
"version": "17",
"installMaven": false,
"installGradle": true
}
},
"ghcr.io/devcontainers/features/cpp:1": {}
},
"postCreateCommand": "cd /opt && wget 'https://github.com/wpilibsuite/vscode-wpilib/releases/download/v2024.3.2/vscode-wpilib-2024.3.2.vsix' && apt-get update && apt-get install -y libstdc++6",

"postCreateCommand": "cd /opt && wget 'https://github.com/wpilibsuite/vscode-wpilib/releases/download/v2024.3.2/vscode-wpilib-2024.3.2.vsix'",
"customizations": {
"vscode": {
"extensions": ["/opt/vscode-wpilib-2024.3.2.vsix","vscjava.vscode-java-pack","vscjava.vscode-gradle", "redhat.java", "vscjava.vscode-java-debug", "vscjava.vscode-java-dependency", "ms-vscode.cpptools"]
"extensions": [
"/opt/vscode-wpilib-2024.3.2.vsix",
"vscjava.vscode-java-pack",
"vscjava.vscode-gradle",
"redhat.java",
"vscjava.vscode-java-debug",
"vscjava.vscode-java-dependency",
"ms-vscode.cpptools"
],
"settings": {
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "/usr/lib/jvm/msopenjdk-17",
"default": true
}
],
"java.jdt.ls.java.home": "/usr/lib/jvm/msopenjdk-17"
}
}
}
}
}

0 comments on commit 4ad8841

Please sign in to comment.