Skip to content

Instantly share code, notes, and snippets.

@sandipb
Created June 28, 2023 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandipb/1b8d8b8359d36ecc813f4086a40d9c1e to your computer and use it in GitHub Desktop.
Save sandipb/1b8d8b8359d36ecc813f4086a40d9c1e to your computer and use it in GitHub Desktop.
#!/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