Skip to content

Instantly share code, notes, and snippets.

@rafaelrozon
Created May 10, 2019 04:20
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 rafaelrozon/a03eb02be8f2bef36b03ee9e9fa55e8a to your computer and use it in GitHub Desktop.
Save rafaelrozon/a03eb02be8f2bef36b03ee9e9fa55e8a to your computer and use it in GitHub Desktop.
#!/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