Last active
October 22, 2020 19:34
-
-
Save ar-to/7ff3ae917ab9a87cfd10ea390e3afdea to your computer and use it in GitHub Desktop.
Visual Studio Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//add these to the settings.json in Visual studio | |
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.minimap.enabled": true, // Controls if the minimap is shown | |
"editor.renderIndentGuides": true, // Controls whether the editor should render indent guides | |
// The path of the shell that the terminal uses on Windows. When using shells shipped with Windows (cmd, PowerShell or Bash on Ubuntu), prefer C:\Windows\sysnative over C:\Windows\System32 to use the 64-bit versions. | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
//"terminal.integrated.shell.windows": "C:\\Windows\\Sysnative\\WindowsPowerShell\\v1.0\\powershell.exe", | |
//"terminal.integrated.shell.windows": "C:\\Windows\\Sysnative\\cmd.exe", | |
"editor.renderWhitespace": "all",//show dots as whitespace characters + | |
"gitProjectManager.baseProjectsFolders": [//allows to switch between repos:require Git Project Manager extension | |
"~/repos/other", | |
"~/repos/another" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍