- Vue
- Svelte
- React
- Kotlin
- Python
- Ruby
Find in your user system folder the '.vscode' folder, inside that delete 'extensions' folder.
Copy and past all folders in that repository inside the '.vscode' folder.
The default folder contains the common extensions between each technology
Copy '.zshrc' to your user system folder.
In your terminal type 'vscodeext desired_technology'
Oh My Shell has aliases and we can create alias as a function, so I create a function that copy the extensions from the informaded technology.
vscodeext() {
rm -rf $HOME/.vscode/extensions
cp -r $HOME/.vscode/$1/extensions $HOME/.vscode
cp -a $HOME/.vscode/default/. $HOME/.vscode/extensions
code
exit
}