Skip to content

Instantly share code, notes, and snippets.

@alec-c4
Created May 28, 2024 10:51
Show Gist options
  • Save alec-c4/df7ab4c62a8a0cd4db9a778b792c65c8 to your computer and use it in GitHub Desktop.
Save alec-c4/df7ab4c62a8a0cd4db9a778b792c65c8 to your computer and use it in GitHub Desktop.
VSCode cleanup
#!/bin/sh
code --list-extensions | while read extension;
do
code --uninstall-extension $extension --force
done
rm -rfv "$HOME/.vscode"
rm -rfv "$HOME/Library/Application Support/Code"
rm -rfv "$HOME/Library/Caches/com.microsoft.VSCode"
rm -rfv "$HOME/Library/Saved Application State/com.microsoft.VSCode.savedState"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment