Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS-Studio Code copy and export profile

I have my profile setup the way I like in VS-Studio Code.

Is it possible to copy the profile and/or sign into Microsoft or similar repository to retrieve what plugins and behaviors I like when going from computer-to-computer?

Like with Google Chrome, if I sign into Google Chrome on a new computer/profile, I get all of the add-ins and such that I like.

like image 834
Leptonator Avatar asked Nov 20 '25 05:11

Leptonator


1 Answers

Easily, no. VS Code doesn't currently have a full profile backup feature. Anything you do to back it up will need to be done manually.

Copying the .json config files for VS Code that live in the AppData/Roaming/Code/User folder on Windows (I don't know what it is on Mac) is a good start for saving the keybindings, settings, and code snippets.

I don't know if this works, but you can also try copying the entire AppData/Roaming/Code/User folder to the other machine.

If you want to preserve the extensions, you can copy the entire .vscode folder in the user directory (Windows) to the other machine.

like image 52
ifconfig Avatar answered Nov 23 '25 02:11

ifconfig