Take a quick look at how to configure VS Code and how to work with workspaces. You’ll learn:
- How to change editor and workspace settings
- What workspaces are and how to create them
- The difference between user settings and workspace settings
- How to create workspace specific settings
Jon Fincher RP Team on Aug. 2, 2019
Hi csharma19:
The way to differentiate between the global (or user) and local
settings.jsonfiles is their location.The global settings file, called the user settings file, will live in a central location based on your user profile – on my Ubuntu system, that’s
~/.config/Code/User/settings.json. On your Windows system, it should be under%APPDATA%\Code\User\settings.json.In contrast, the workspace settings file is always relative to the workspace folder. As you found, it is the folder
./.vscode/settings.json.And as you also discovered, you cannot change the name.
You can always learn more in the VS Code documentation – this information can be found at https://code.visualstudio.com/docs/getstarted/settings.
–Jon