mirror of
https://github.com/jakejarvis/dotfiles.git
synced 2025-04-26 03:45:21 -04:00
35 lines
831 B
Bash
Executable File
35 lines
831 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
extensions=(
|
|
amazonwebservices.aws-toolkit-vscode
|
|
bungcip.better-toml
|
|
DavidAnson.vscode-markdownlint
|
|
dbaeumer.vscode-eslint
|
|
EditorConfig.EditorConfig
|
|
eg2.vscode-npm-script
|
|
esbenp.prettier-vscode
|
|
firefox-devtools.vscode-firefox-debug
|
|
GitHub.github-vscode-theme
|
|
GitHub.vscode-pull-request-github
|
|
golang.go
|
|
mrmlnc.vscode-duplicate
|
|
ms-azuretools.vscode-docker
|
|
ms-vscode-remote.remote-containers
|
|
ms-vscode-remote.remote-ssh
|
|
ms-vscode-remote.remote-ssh-edit
|
|
ms-vscode-remote.vscode-remote-extensionpack
|
|
ms-vscode.azure-account
|
|
ms-vscode.wordcount
|
|
ms-vsliveshare.vsliveshare
|
|
ms-vsonline.vsonline
|
|
msjsdiag.debugger-for-chrome
|
|
PKief.material-icon-theme
|
|
stylelint.vscode-stylelint
|
|
)
|
|
|
|
for e in "${extensions[@]}"; do
|
|
code --install-extension "$e"
|
|
done
|