Skip to content

Instantly share code, notes, and snippets.

@joseluisq
Last active March 27, 2025 12:21
Show Gist options
  • Save joseluisq/4740e37a9f2358357381e308aa39c52d to your computer and use it in GitHub Desktop.
Save joseluisq/4740e37a9f2358357381e308aa39c52d to your computer and use it in GitHub Desktop.
How to export your VS Code extensions from terminal

How to export your VS Code extensions from terminal

Note: Unix-like systems only.

  1. Export your extensions to a shell file:
code --list-extensions | sed -e 's/^/code --install-extension /' > my_vscode_extensions.sh
  1. Verify your extensions installer file:
less my_vscode_extesions.sh

Install your extensions (optional)

Run your my_vscode_extensions.sh using Bash command:

bash my_vscode_extensions.sh
@DannyJanmaat
Copy link

DannyJanmaat commented Mar 27, 2025

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