Me and my team are working in a large repo, with dozens and dozens of different projects within. We have settings for writing documentation within VSCode that we'd like to apply to all workspace subfolders, so that if you open a subfolder where the project you're actually working on is, you'll get the same experience as if you opened VSCode at the root workspace level
.vscode
|-- settings.json <-- Workspace settings I'd like to apply globally
private
|-- src
|-- proj1 <-- If VSCode is opened in this folder, global settings are applied
|-- ...
|-- proj2 <-- Same here...
|-- ...
|-- proj3 <-- And here...
|-- ...
|-- proj4 <-- etc.
|-- ...
|-- proj5
|-- ...
|-- tools
|-- proj6 <-- And in sub-sub folders
|-- ...
|-- ...
|-- ...
I'm aware of Multi-Root workspaces, but my understanding is that would require adding every project to the workspace in order for the settings to apply, which would mean sifting through maybe a hundred folders to find the one you care about, and still wouldn't allow you to open VSCode in the subfolder where your project is.
Is there a way to do this with VSCode?