Created
January 14, 2019 22:35
-
-
Save casivaagustin-zz/0041fd649a1aba4d06e61999cd46fd44 to your computer and use it in GitHub Desktop.
Install VS code plugins for PHP
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/bash | |
extensions="alefragnani.Bookmarks | |
arcticicestudio.nord-visual-studio-code | |
bmewburn.vscode-intelephense-client | |
cjhowe7.laravel-blade | |
dbaeumer.vscode-eslint | |
felixfbecker.php-debug | |
felixfbecker.php-intellisense | |
felixfbecker.php-pack | |
formulahendry.auto-close-tag | |
formulahendry.auto-rename-tag | |
k--kato.intellij-idea-keybindings | |
kokororin.vscode-phpfmt | |
marcostazi.VS-code-drupal | |
mikestead.dotenv | |
octref.vetur | |
rokoroku.vscode-theme-darcula | |
SonarSource.sonarlint-vscode | |
vscodevim.vim | |
xyz.local-history" | |
for extension in $extensions ; do | |
code --install-extension $extension | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment