Skip to content

Instantly share code, notes, and snippets.

@begrafx
Forked from marlonkjoseph/README.md
Created January 4, 2020 23:33
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 begrafx/ecba690aa099e49b3ecbfac30134f13b to your computer and use it in GitHub Desktop.
Save begrafx/ecba690aa099e49b3ecbfac30134f13b to your computer and use it in GitHub Desktop.
Install VSCode extensions for Drupal 8

Prerequisites

Instructions

Issues

If it does not complete successfully, contact the author or maintainer. It is likely that the extension may have been removed from the gallery.

#!/bin/sh
set -e # Fail fast
echo "Installing Recommended PHP Extensions..."
code --install-extension ikappas.phpcs
code --install-extension msjsdiag.debugger-for-chrome
code --install-extension neilbrayfield.php-docblocker
code --install-extension bmewburn.vscode-intelephense-client
code --install-extension DmitryDorofeev.empty-indent
code --install-extension felixfbecker.php-debug
echo "Installing Recommended Drupal 8 Extensions…"
code --install-extension ikappas.composer
code --install-extension mblode.twig-language-2
echo "Completed Successfully!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment