Skip to content

Instantly share code, notes, and snippets.

@cicorias
Created July 28, 2019 16:13
Show Gist options
  • Select an option

  • Save cicorias/91b3d34f40aecfc4b45d0795a8db5761 to your computer and use it in GitHub Desktop.

Select an option

Save cicorias/91b3d34f40aecfc4b45d0795a8db5761 to your computer and use it in GitHub Desktop.
List and install s code extensions

Manual - By script

In machine A,

UNIX:

code --list-extensions | xargs -L 1 echo code --install-extension Windows (PowerShell, e. g. using VSCode's integrated Terminal): code --list-extensions | % { "code --install-extension $_" } copy and paste the echo output to machine B sample output

code --install-extension Angular.ng-template code --install-extension DSKWRK.vscode-generate-getter-setter code --install-extension EditorConfig.EditorConfig code --install-extension HookyQR.beautify

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