Created
October 29, 2025 17:22
-
-
Save lpenaud/3982a083af6b49a970086b96aff1471b to your computer and use it in GitHub Desktop.
Codium extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| declare -a exts=() | |
| while read -r line; do | |
| exts+=(--install-extension "${line}") | |
| done < code-extension.list | |
| codium "${exts[@]}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| denoland.vscode-deno | |
| akamud.vscode-theme-onelight | |
| dbaeumer.vscode-eslint | |
| mhutchie.git-graph | |
| mermaidchart.vscode-mermaid-chart | |
| vscode-icons-team.vscode-icons | |
| redhat.vscode-xml | |
| redhat.vscode-yaml | |
| vue.volar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment