Skip to content

Instantly share code, notes, and snippets.

@miclgael
Last active March 11, 2020 21:28
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 miclgael/fec1768d31c92a580a3b0a28688a29e9 to your computer and use it in GitHub Desktop.
Save miclgael/fec1768d31c92a580a3b0a28688a29e9 to your computer and use it in GitHub Desktop.
VS Code Extensions Reference (archived)
# My VS Code Extensions
## If you have the `code` command in your Shell, you can paste this in to install them all in one shot.
## List all your extensions with: `code --list-extensions`
# 1. Misc. Syntax packs
code --install-extension budparr.language-hugo-vscode --force && \
code --install-extension bungcip.better-toml --force && \
code --install-extension mechatroner.rainbow-csv --force && \
code --install-extension yzhang.markdown-all-in-one --force && \
# 2. Node.js tools
code --install-extension wix.vscode-import-cost --force && \
code --install-extension WallabyJs.quokka-vscode --force && \
code --install-extension eg2.vscode-npm-script --force && \
# 3. Vue.js tools
code --install-extension octref.vetur --force && \
code --install-extension sdras.vue-vscode-snippets --force && \
# 4. PHP / Wordpress Tools
code --install-extension wordup.wordup-code --force && \
code --install-extension felixfbecker.php-intellisense --force && \
code --install-extension wordpresstoolbox.wordpress-toolbox --force && \
# 5. Python IDE Stuff
code --install-extension ms-python.python --force && \
code --install-extension almenon.arepl --force && \
code --install-extension njpwerner.autodocstring --force && \
# 6. Linting
code --install-extension esbenp.prettier-vscode --force && \
code --install-extension HookyQR.beautify --force && \
# 7. Other Utils
code --install-extension CoenraadS.bracket-pair-colorizer --force && \
code --install-extension britesnow.vscode-toggle-quotes --force && \
code --install-extension ms-vscode.atom-keybindings --force && \
code --install-extension waderyan.gitblame --force && \
code --install-extension mrmlnc.vscode-duplicate --force && \
code --install-extension firefox-devtools.vscode-firefox-debug --force && \
code --install-extension jeremyljackson.vs-docblock --force && \
code --install-extension jsynowiec.vscode-insertdatestring --force && \
code --install-extension ms-azuretools.vscode-docker --force && \
@miclgael
Copy link
Author

This is an archive of my previous method of syncing my extensions across my various workstations, where I'd just curl this and pipe it to bash to install everything.

The new version uses the awesome Settings Sync extension, to make things a little quicker.

Check out my Setup repository for more cool snippets 😎

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment