Skip to content

Instantly share code, notes, and snippets.

@s4na
Last active August 6, 2020 15:19
Show Gist options
  • Save s4na/a89aac50fc6312b9134e750da5b33759 to your computer and use it in GitHub Desktop.
Save s4na/a89aac50fc6312b9134e750da5b33759 to your computer and use it in GitHub Desktop.

vscode extentions

https://qiita.com/takeru08ma/items/43705af9fa864cf3bc18

作り方

vscodeでextentionsをインストールしているPCで以下のコマンド実行

$ code --list-extensions

# Visual Studio Code :: Package list に貼り付ける

Script

#!/bin/bash

# execute command
# -------------------
# curl -s https://gist.githubusercontent.com/busonx/f0e9644c7685097fe8916546f1a95f5d/raw/78e86b7226e02c627ae937a3ff4a6d85f9092cbb/install-centos7.x-vscode-extensions.sh | /bin/bash

# Visual Studio Code :: Package list
pkglist=(

<ここに $ code --list-extensions の結果を貼り付ける>

)

for i in ${pkglist[@]}; do
  code --install-extension $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment