Created
October 30, 2024 14:38
-
-
Save jclem/ad5280754316e674bd821da2a103308d to your computer and use it in GitHub Desktop.
Reset VSCode settings and extensions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo '[]' >"$HOME/Library/Application Support/Code/User/keybindings.json" | |
echo '{}' >"$HOME/Library/Application Support/Code/User/settings.json" | |
for ext in (code --list-extensions) | |
code --uninstall-extension $ext --force | |
end | |
echo '[]' >"$HOME/Library/Application Support/Code - Insiders/User/keybindings.json" | |
echo '{}' >"$HOME/Library/Application Support/Code - Insiders/User/settings.json" | |
for ext in (code-insiders --list-extensions) | |
code-insiders --uninstall-extension $ext --force | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment