Skip to content

Instantly share code, notes, and snippets.

@sixman9
Created August 13, 2019 17:12
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 sixman9/b946bf74b274d16091bbb370f5538697 to your computer and use it in GitHub Desktop.
Save sixman9/b946bf74b274d16091bbb370f5538697 to your computer and use it in GitHub Desktop.
Install extensions in Visual Studio code from the command line
#!/bin/sh
extensionList=(
formulahendry.auto-close-tag
formulahendry.auto-complete-tag
formulahendry.auto-rename-tag
CoenraadS.bracket-pair-colorizer
wmaurer.change-case
Shan.code-settings-sync
streetsidesoftware.code-spell-checker
naumovs.color-highlight
alexdima.copy-relative-path
dsznajder.es7-react-js-snippets
flowtype.flow-for-vscode
waderyan.gitblame
wix.glean
yzhang.markdown-all-in-one
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
esbenp.prettier-vscode
2gua.rainbow-brackets
kelset.rn-full-pack
jasonnutter.search-node-modules
dbaeumer.vscode-eslint
mgmcdermott.vscode-language-babel
DavidAnson.vscode-markdownlint
eg2.vscode-npm-script
msjsdiag.vscode-react-native
cssho.vscode-svgviewer
wayou.vscode-todo-highlight
ms-vscode.vscode-typescript-tslint-plugin
VisualStudioExptTeam.vscodeintellicode
wallabyjs.quokka-vscode
)
for i in "${extensionList[@]}"; do
#echo "$i"
code --install-extension "$i"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment