Skip to content

Instantly share code, notes, and snippets.

@vexx32
Created August 6, 2018 04:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vexx32/f3bcc9d2c204d4cb02edc036ee348b2b to your computer and use it in GitHub Desktop.
Save vexx32/f3bcc9d2c204d4cb02edc036ee348b2b to your computer and use it in GitHub Desktop.
Personal settings for VS Code
{
"files.defaultLanguage": "powershell",
"editor.fontFamily": "'Anonymous Pro', Consolas",
"editor.cursorBlinking": "phase",
"files.autoSave": "onWindowChange",
// Powershell Settings
"powershell.codeFormatting.openBraceOnSameLine": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"powershell.codeFormatting.newLineAfterOpenBrace": false,
"editor.tabSize": 4,
"team.showWelcomeMessage": false,
"git.autofetch": true,
"git.confirmSync": false,
"powershell.developer.editorServicesLogLevel": "Verbose",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"powershell.powerShellExePath": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"materialTheme.fixIconsRunning": false,
"files.trimTrailingWhitespace": true,
"terminal.integrated.rendererType": "canvas",
"workbench.colorTheme": "Slack Theme",
"bracketPairColorizer.consecutivePairColors": [
"()",
"[]",
"{}",
[
"Teal",
"Purple",
"Brown"
],
"Red"
],
"bracketPairColorizer.independentPairColors": [
[
"()",
[
"Teal",
"Purple",
"Brown"
],
"Red"
],
[
"[]",
[
"Teal",
"Purple",
"Brown"
],
"Red"
],
[
"{}",
[
"Teal",
"Purple",
"Brown"
],
"Red"
]
],
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"window.zoomLevel": 0,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"terminal.integrated.fontSize": 14,
"workbench.colorCustomizations": {
"terminal.foreground": "#EEEDF0",
"terminal.background": "#012456"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment