Note: Unix-like systems only.
- Export your extensions to a shell file (manually):
code --list-extensions | sed -e 's/^/code --install-extension /' > my_vscode_extensions.sh
or execute:
./list-vsc-extensions.sh
- Verify your extensions installer file:
less my_vscode_extesions.sh
or
less install-vsc-extensions.sh
Run your my_vscode_extensions.sh
or install-vsc-extensions.sh
using Bash command:
bash my_vscode_extensions.sh
or
bash install-vsc-extensions.sh
Note: [For PowerShell] (https://docs.microsoft.com/en-us/powershell/).
- Export your extensions to a ps file:
./list-vsc-extensions.ps1
- Verify your extensions installer file:
less install-vsc-extensions.ps1
Run your install-vsc-extensions.ps1
using PowerShell command:
install-vsc-extensions.ps1