Created
May 10, 2019 04:20
-
-
Save rafaelrozon/a03eb02be8f2bef36b03ee9e9fa55e8a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/sh | |
EXTENSIONS=( | |
"Equinusocio.vsc-material-theme" | |
"GrapeCity.gc-excelviewer" | |
"dbaeumer.vscode-eslint" | |
"felixfbecker.php-intellisense" | |
"felixfbecker.php-pack" | |
"formulahendry.auto-close-tag" | |
"ms-vscode.atom-keybindings" | |
"msjsdiag.debugger-for-chrome" | |
"neilbrayfield.php-docblocker" | |
"wmaurer.change-case" | |
"ronnidc.nunjucks" | |
"akamud.vscode-theme-onelight" | |
"shinnn.stylelint" | |
"xabikos.ReactSnippets" | |
"zhuangtongfa.Material-theme" | |
"CoenraadS.bracket-pair-colorizer" | |
"wmaurer.change-case" | |
"streetsidesoftware.code-spell-checker" | |
"EditorConfig.EditorConfig" | |
"letrieu.expand-region" | |
"sleistner.vscode-fileutils" | |
"file-icons.file-icons" | |
"yzhang.markdown-all-in-one" | |
"christian-kohler.path-intellisense" | |
"vilicvane.sensitive-replace" | |
"formulahendry.auto-rename-tag" | |
"wix.glean" | |
"bradgashler.htmltagwrap" | |
"whtouche.vscode-js-console-utils" | |
"andys8.jest-snippets" | |
"christian-kohler.npm-intellisense" | |
"pflannery.vscode-versionlens" | |
"ms-python.python" | |
"PeterJausovec.vscode-docker" | |
"PKief.material-icon-theme" | |
"redhat.vscode-yaml" | |
"DavidAnson.vscode-markdownlint" | |
"ritwickdey.LiveServer" | |
"Zignd.html-css-class-completion" | |
"Gruntfuggly.todo-tree" | |
"robinbentley.sass-indented" | |
"ionutvmi.path-autocomplete" | |
"pranaygp.vscode-css-peek" | |
"vincaslt.highlight-matching-tag" | |
"ziyasal.vscode-open-in-github" | |
"jpoissonnier.vscode-styled-components" | |
"angryobject.react-pure-to-class-vscode" | |
"mikestead.dotenv" | |
) | |
for element in "${EXTENSIONS[@]}" | |
do | |
code --install-extension "$element" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment