Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jubilancy/4ebb28070efd14e8f82efae72f0d0b58 to your computer and use it in GitHub Desktop.

Select an option

Save jubilancy/4ebb28070efd14e8f82efae72f0d0b58 to your computer and use it in GitHub Desktop.
VS Code bulk install plugins
#! /bin/sh
input="./vscodeplugins.txt"
while IFS= read -r line
do
echo "Installing - $line"
code --install-extension $line --force
echo "Installed - $line"
done < "$input"

VS Code bulk extensions installer.

  • run code --list-extensions > vscodeplugins.txt on the first machine

  • Then copy over vscodeplugins.txt to the new machine and run codeinstaller.sh on the new machine

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment