Skip to content

Instantly share code, notes, and snippets.

@bodrick
Created April 26, 2021 15:40
Show Gist options
  • Save bodrick/19b07e5faf6379c8cb62b8d32c30b6e1 to your computer and use it in GitHub Desktop.
Save bodrick/19b07e5faf6379c8cb62b8d32c30b6e1 to your computer and use it in GitHub Desktop.
Reinstall VSCode extensions
Dump extensions:
code --list-extensions > extensions.txt
Install extensions with Bash (Linux, OS X and WSL):
cat extensions.txt | xargs -L 1 code --install-extension
Install extensions on Windows with PowerShell:
cat extensions.txt |% { code --install-extension $_}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment