diff --git a/_posts/2020-09-10-CodeSpaces-For-FRC.md b/_posts/2020-09-10-CodeSpaces-For-FRC.md index 5d171de..f4b22e5 100644 --- a/_posts/2020-09-10-CodeSpaces-For-FRC.md +++ b/_posts/2020-09-10-CodeSpaces-For-FRC.md @@ -76,7 +76,15 @@ With this docker container, all we need to do is tell GitHub how to set up a Cod "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind" ], // Any extensions you want can go here - "extensions": [] + "extensions": [ + // Needed extensions for using WPILib + "redhat.java", + "ms-vscode.cpptools", + "vscjava.vscode-java-pack", + + // The WPILib extension itself + "wpilibsuite.vscode-wpilib" + ] } ```