Introduction
What privacy concern with VSCode?
VSCodium is a free and open-source alternative to Visual Studio Code (VS Code), which is a popular code editor. doesn’t collect any data about how you use it, making it more private. On the Other hand, it works similarly and supports extensions, so you can customize it for your coding needs just like VS Code. It’s a good choice if you want a code editor that respects your privacy.
I wanna install it!
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew cask install vscodium
But what about my extensions and settings in VScode?
cp ~/Library/Application\ Support/Code/User/settings.json ~/vscode-settings.json
cp ~/Library/Application\ Support/Code/User/keybindings.json ~/vscode-keybindings.json
Export extensions
code --list-extensions | tee ~/vscode-extensions.txt
xargs -n1 codium --install-extension < ~/vscode-extensions.txt
Import settings for VSCodium
mv ~/vscode-settings.json ~/Library/Application\ Support/VSCodium/User/settings.json
mv ~/vscode-keybindings.json ~/Library/Application\ Support/VSCodium/User/keybindings.json
Conclusion