Last active
December 14, 2021 22:59
-
-
Save ar-to/7cb7bf7b4fa611c0e6aa14be61f45be5 to your computer and use it in GitHub Desktop.
script to help speed up commonly used vscode extensions. More added regularly...
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
#!/usr/bin/env bash | |
# TODO: | |
# - create methods for specific groups and maybe turn this into a CLI tool | |
# Print list of extensions ready to copy/paste and install | |
#code --list-extensions | xargs -L 1 echo code --install-extension | |
# Project Managing | |
code --install-extension alefragnani.project-manager | |
code --install-extension eamodio.gitlens | |
code --install-extension mhutchie.git-graph | |
code --install-extension felipecaputo.git-project-manager | |
code --install-extension GitHub.vscode-pull-request-github | |
code --install-extension nrwl.angular-console | |
# languages support | |
code --install-extension GraphQL.vscode-graphql | |
# IDE | |
code --install-extension dracula-theme.theme-dracula | |
code --install-extension oderwat.indent-rainbow | |
code --install-extension vscode-icons-team.vscode-icons | |
code --install-extension kamikillerto.vscode-colorize | |
code --install-extension Gruntfuggly.todo-tree | |
code --install-extension TabNine.tabnine-vscode | |
# LiveShare | |
code --install-extension ms-vsliveshare.vsliveshare | |
code --install-extension ms-vsliveshare.vsliveshare-audio | |
code --install-extension ms-vsliveshare.vsliveshare-pack | |
# Analysis | |
code --install-extension wix.vscode-import-cost | |
# DEV | |
code --install-extension esbenp.prettier-vscode | |
# Javascript & Typescript | |
code --install-extension ms-vscode.vscode-typescript-tslint-plugin | |
code --install-extension firsttris.vscode-jest-runner | |
code --install-extension jpoissonnier.vscode-styled-components | |
code --install-extension scolo.json-to-jsdoc | |
# Ruby & Ruby on Rails | |
code --install-extension rebornix.ruby | |
code --install-extension misogi.ruby-rubocop | |
code --install-extension bung87.vscode-gemfile | |
code --install-extension bung87.rails | |
# Other | |
code --install-extension ms-azuretools.vscode-docker | |
code --install-extension ms-vscode-remote.remote-containers | |
code --install-extension msjsdiag.debugger-for-chrome | |
code --install-extension sianglim.slim | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment