Wednesday, 5 May 2021

Visual Studio Code settings

 he settings for Visual Studio Code can be found:

  • On a Windows or Linux computer, click menu File → Preferences → Settings
  • On a Mac, click menu Code → Preferences → Settings

https://stackoverflow.com/questions/40818354/visual-studio-code-git-folder-file-hidden



https://code.visualstudio.com/docs/getstarted/settings

Settings file locations#

By default VS Code shows the Settings editor, but you can still edit the underlying settings.json file by using the Open Settings (JSON) command or by changing your default settings editor with the workbench.settings.editor setting.

Depending on your platform, the user settings file is located here:

  • Windows %APPDATA%\Code\User\settings.json
  • macOS $HOME/Library/Application Support/Code/User/settings.json
  • Linux $HOME/.config/Code/User/settings.json

VS Code provides two different scopes for settings:

  • User Settings - Settings that apply globally to any instance of VS Code you open.
  • Workspace Settings - Settings stored inside your workspace and only apply when the workspace is opened.


File: Exclude 
Configure glob patterns for excluding files and folders. For example, the file Explorer decides which files and folders to show or hide based on this setting. Refer to the Search: Exclude setting to define search specific excludes. Read more about glob pattern







No comments:

Post a Comment