Skip to content

Instantly share code, notes, and snippets.

@ian-noble
Last active May 12, 2018 15:14
Show Gist options
  • Save ian-noble/052ecda505bb1613eb77d15c622e8eb9 to your computer and use it in GitHub Desktop.
Save ian-noble/052ecda505bb1613eb77d15c622e8eb9 to your computer and use it in GitHub Desktop.
Visual Studio Code user settings.
// Place your settings in this file to overwrite the default settings
{
// Appearance.
"editor.fontFamily": "'Source Code Pro', Consolas, 'Courier New', monospace",
"workbench.colorTheme": "Solarized Dark",
// Whether the proxy server certificate should be verified against the list of supplied CAs.
"http.proxyStrictSSL": false,
// Powershell.
"powershell.scriptAnalysis.enable": true,
"powershell.startAutomatically": true,
"powershell.integratedConsole.focusConsoleOnExecute":false,
"terminal.integrated.shell.windows":"%ProgramFiles%/PowerShell/6-preview/pwsh.exe",
"editor.minimap.enabled": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"powershell.codeFormatting.openBraceOnSameLine":true,
"powershell.debugging.createTemporaryIntegratedConsole":true,
"powershell.codeFormatting.preset":"Allman",
"powershell.powerShellExePath":"%ProgramFiles%/PowerShell/6-preview/pwsh.exe",
// Gitlens.
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment