My VSCode extension packs for use in Profiles and Containers.
There are three categories of plugin packs:
- Base (Things like EditorConfig, TODO highlighting, etc.)
- Core (Contains all decoration packs except itself)
- Icons (Adds File Icon Themes)
- Product Icons (Adds Product Icon Themes)
- Syntax (Adds Syntax Highlightings)
- Themes (Adds Color Themes)
- All (All ecosystem packs and platform packs)
- Cpp
- DevOps
- Go
- Java
- LaTeX
- Markdown
- PHP
- Python
- Ruby
- Rust
- Shell
- Web
- *nix
- Windows
Click the Extensions tab and search for Edwin's Pack:
to see all the packs. I recommend choosing one extension from each category (they are color-coded). For example, see this devcontainer.json
:
{
"image": "mcr.microsoft.com/devcontainers/typescript-node",
"forwardPorts": [3000],
"customizations": {
"vscode": {
"extensions": [
"EdwinKofler.vscode-hyperupcall-pack-core",
"EdwinKofler.vscode-hyperupcall-pack-web",
"EdwinKofler.vscode-hyperupcall-pack-unix"
]
}
}
}