Last active
May 12, 2018 15:14
-
-
Save ian-noble/052ecda505bb1613eb77d15c622e8eb9 to your computer and use it in GitHub Desktop.
Visual Studio Code user settings.
This file contains 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
// 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