Created
August 6, 2018 04:09
-
-
Save vexx32/f3bcc9d2c204d4cb02edc036ee348b2b to your computer and use it in GitHub Desktop.
Personal settings for VS Code
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
{ | |
"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