Skip to content

Instantly share code, notes, and snippets.

@bergpb
Created July 10, 2022 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bergpb/d552efa40d9d37a18153d641d5bc9318 to your computer and use it in GitHub Desktop.
Save bergpb/d552efa40d9d37a18153d641d5bc9318 to your computer and use it in GitHub Desktop.
Export and Install VSCode extensions
# https://stackoverflow.com/questions/35773299/how-can-you-export-the-visual-studio-code-extension-list
# creating a file with all extensions
code --list-extensions > code_extensions.txt
# installing from a file
cat code_extensions.txt | xargs -L 1 code --install-extension
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment