Skip to content

Instantly share code, notes, and snippets.

@hosackm
Last active October 11, 2018 17:47
Show Gist options
  • Save hosackm/bdc06c35a3effc097b11c26114d65546 to your computer and use it in GitHub Desktop.
Save hosackm/bdc06c35a3effc097b11c26114d65546 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"
],
"window.zoomLevel": 0
}
// Keybindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus",
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+l",
"command": "expandLineSelection",
"when": "textInputFocus"
},
{
"key": "ctrl+i",
"command": "-expandLineSelection",
"when": "textInputFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment