-
-
Save casivaagustin-zz/7799836bd7598fd1dc4fbbaf9ca65b4c to your computer and use it in GitHub Desktop.
Script to Install my vscode extensions all at once 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