Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we have separate settings for each VS Code instance open?

I'd like to have for example different zoom levels for each instance of VS Code open on my desktop. Right now if I change zooming in one VS Code window, all others get affected as well.

like image 668
Bogac Avatar asked Sep 05 '25 02:09

Bogac


1 Answers

You can set all preferences on a per workspace basis.

All you need is "window.zoomLevel": 1 in a .vscode/settings.json file and it affects only the window in this project.

You can read more about the preference system in the docs.

like image 173
kwood Avatar answered Sep 09 '25 18:09

kwood