1
mirror of https://github.com/jakejarvis/dotfiles.git synced 2025-11-04 22:10:09 -05:00

randomness

This commit is contained in:
2022-12-22 13:00:05 -05:00
parent 46fc622186
commit eeb1f2092c
14 changed files with 234 additions and 418 deletions

View File

@@ -1,29 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
extensions=(
amazonwebservices.aws-toolkit-vscode
DavidAnson.vscode-markdownlint
dbaeumer.vscode-eslint
EditorConfig.EditorConfig
esbenp.prettier-vscode
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.wordcount
ms-vsliveshare.vsliveshare
ms-vsonline.vsonline
PKief.material-icon-theme
stylelint.vscode-stylelint
)
for e in "${extensions[@]}"; do
code --install-extension "$e"
done