概要
OS別に Visual Studio Code の設定を削除・初期化(リセット)する方法を記載する
.vscode
には拡張機能、 Code
には設定プロファイルが格納されている
Linux
ターミナルを開いて以下のコマンドを実行
rm -rf ~/.vscode
rm -rf ~/.config/Code
macOS
ターミナルを開いて以下のコマンドを実行
rm -rf ~/.vscode
rm -rf ~/Library/Application\ Support/Code
Windows
PowerShellを開いて以下のコマンドを実行
Remove-Item -Recurse -Force $env:USERPROFILE\.vscode
Remove-Item -Recurse -Force $env:APPDATA\Code
再同期
設定の同期を有効化していた場合、 F1
キーより、「コマンドパレット」を開き、下記コマンドを入力
Settings Sync: Turn On...
GitHub もしくは Microsoft アカウントにて設定の同期を再度有効化する