Skip to content

Instantly share code, notes, and snippets.

@tompazourek
Last active July 26, 2021 09:21
Show Gist options
  • Save tompazourek/e08c8c533781d4bb6fdb46e5f51d874a to your computer and use it in GitHub Desktop.
Save tompazourek/e08c8c533781d4bb6fdb46e5f51d874a to your computer and use it in GitHub Desktop.
VSCode settings.json
{
"workbench.iconTheme": "vscode-icons",
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"terminal.integrated.shellArgs.windows": [
"-NoLogo"
],
"workbench.colorTheme": "Visual Studio Light",
"[powershell]": {
"editor.defaultFormatter": "ms-vscode.powershell"
},
"editor.renderControlCharacters": true,
"editor.fontSize": 13,
"editor.lineHeight": 16,
"terminal.integrated.fontSize": 13,
"workbench.colorCustomizations": {
"terminal.foreground": "#CCCCCC",
"terminal.background": "#012456",
"terminal.ansiBlack": "#0C0C0C",
"terminal.ansiRed": "#C50F1F",
"terminal.ansiGreen": "#13A10E",
"terminal.ansiYellow": "#C19C00",
"terminal.ansiBlue": "#0037DA",
"terminal.ansiPurple": "#881798",
"terminal.ansiCyan": "#3A96DD",
"terminal.ansiWhite": "#CCCCCC",
"terminal.ansiBrightBlack": "#767676",
"terminal.ansiBrightRed": "#E74856",
"terminal.ansiBrightGreen": "#16C60C",
"terminal.ansiBrightYellow": "#F9F1A5",
"terminal.ansiBrightBlue": "#3B78FF",
"terminal.ansiBrightPurple": "#B4009E",
"terminal.ansiBrightCyan": "#61D6D6",
"terminal.ansiBrightWhite": "#F2F2F2"
},
"powershell.integratedConsole.showOnStartup": false,
"powershell.powerShellDefaultVersion": "Windows PowerShell (x64)",
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"workbench.sideBar.location": "right",
"grammarly.userWords": [
"Colourful"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment