Skip to content

Instantly share code, notes, and snippets.

@hosackm
Created May 14, 2018 20:25
Show Gist options
  • Save hosackm/e1e8be8061f896ff332a0f9405d880c9 to your computer and use it in GitHub Desktop.
Save hosackm/e1e8be8061f896ff332a0f9405d880c9 to your computer and use it in GitHub Desktop.
vscode_config
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "One Dark Pro",
// "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"editor.fontFamily": "'Fira Code', Hack",
"editor.fontWeight": "100",
"editor.fontSize": 13,
"editor.fontLigatures": true,
"editor.rulers": [
120
],
"terminal.integrated.fontSize": 12,
"terminal.integrated.shell.windows": "C:\\cygwin\\bin\\bash.exe",
// python
"python.linting.flake8Enabled": true,
"python.linting.pep8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=120"
],
"python.linting.pep8Args": [
"--max-line-length=120"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment