Home > Blockchain >  Can I set a workspace settings in user settings in vs code?
Can I set a workspace settings in user settings in vs code?

Time:01-17

I know there are two places you can configure settings in VS code. User settings and workspace settings.

Our team occupy the workspace settings already and we maintain it in git for everyone for a project.

So I can't have my specific change there for a project. What I'm trying to do is using different theme for each project. Is there any way to do so? I hope there is a "third" settings only for me for a specific workspace.

Constantly unstaging my change is not an option :)

CodePudding user response:

You can put all projects in a Multi Root Workspace (.code-workspace file)

Then you can use the extension When File to change the theme based on file paths. It will change the settings in the .code-workspace file

  • Related