Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to share extensions and settings with VS Code stable and insider build?

I have installed both the versions of VS Code stable and insiders build on my machine.

But the problem is that insiders are not showing all the settings and extensions I am using in the stable version.

So, how to share all the stuff with the insiders build.

like image 935
Yashu Mittal Avatar asked Jun 25 '18 03:06

Yashu Mittal


People also ask

Where are VS Code extension settings stored?

Extensions are installed in a per user extensions folder. Depending on your platform, the location is in the following folder: Windows %USERPROFILE%\. vscode\extensions.


1 Answers

Try the Settings Sync extension, it should take care of both settings and extensions.

Alternatively, you may prefer to replace .vscode-insiders/extensions with a symbolic link to .vscode/extensions (mklink command on Windows). This is preferable especially if you are doing extension development and have extensions installed from source in your extensions directory (rather than from the marketplace).

like image 142
Gama11 Avatar answered Oct 21 '22 01:10

Gama11