Created
June 28, 2023 23:49
-
-
Save sandipb/1b8d8b8359d36ecc813f4086a40d9c1e to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env bash | |
EXTENSIONS=( | |
# General | |
ms-vscode-remote.vscode-remote-extensionpack | |
ms-vscode-remote.remote-ssh | |
stkb.rewrap | |
tomsaunders-code.workspace-explorer | |
# Golang | |
golang.go | |
# Python | |
ms-python.isort | |
ms-python.python | |
ms-python.vscode-pylance | |
batisteo.vscode-django | |
# Markdown | |
yzhang.markdown-all-in-one | |
DavidAnson.vscode-markdownlint | |
# YAML/TOML | |
redhat.vscode-yaml | |
bungcip.better-toml | |
# Docker | |
ms-azuretools.vscode-docker | |
# Hashicorp | |
hashicorp.hcl | |
hashicorp.terraform | |
) | |
for ext in ${EXTENSIONS[@]} | |
do | |
code --install-extension $ext | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment