can I manage plugins by projects?

Viewed 535

I have a lot of projects to maintain; they require different plugins to operate. But, some plugins are heavy and make VSCode slow.

I want a plugin-set to be applied when I open one project and not to others. In this way my VSCode will be light-weight.

2 Answers

You need to go to Extensions (CTRL+SHIFT+E) in the Activity Bar, click the cogwheel next to an extension and select Disable (Workspace). Apparently it's also possible to disable an extension globally, and make it activate only if it's explicitly enabled in {workspace}/.vscode/settings.json.

It's possible to disable extensions per workspace

Related