Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save casivaagustin-zz/0041fd649a1aba4d06e61999cd46fd44 to your computer and use it in GitHub Desktop.
Save casivaagustin-zz/0041fd649a1aba4d06e61999cd46fd44 to your computer and use it in GitHub Desktop.
Install VS code plugins for PHP
#!/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