Skip to content

Instantly share code, notes, and snippets.

@ar-to
Last active October 22, 2020 19:34
Show Gist options
  • Save ar-to/7ff3ae917ab9a87cfd10ea390e3afdea to your computer and use it in GitHub Desktop.
Save ar-to/7ff3ae917ab9a87cfd10ea390e3afdea to your computer and use it in GitHub Desktop.
Visual Studio Settings
//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"
]
}
@rbirky1
Copy link

rbirky1 commented Oct 22, 2020

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment