Skip to content

Instantly share code, notes, and snippets.

@SlideeScherz
Created May 8, 2024 20:13
Show Gist options
  • Save SlideeScherz/c3eb491dc82d8ecc278aa15d0ceb5b9d to your computer and use it in GitHub Desktop.
Save SlideeScherz/c3eb491dc82d8ecc278aa15d0ceb5b9d to your computer and use it in GitHub Desktop.
bash usage
#!/bin/bash
# Install VS Code extensions
# if need to use powershell: https://gist.github.com/vmandic/ef80f1097521c16063b3b1c3a687d244
# `code --install-extension` will echo
# echo Installing VS Code Extensions...
extensions=(
dsznajder.es7-react-js-snippets
dbaeumer.vscode-eslint
expo.vscode-expo-tools
ms-vscode.vscode-typescript-next
msjsdiag.vscode-react-native
)
# itr & install each extension
for extension in "${extensions[@]}"; do
# echo "$extension"
code --install-extension "$extension"
done
echo Done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment