Last active
June 7, 2018 03:54
-
-
Save szastupov/5a63da44d6f120ad38ac2b5a81b1f365 to your computer and use it in GitHub Desktop.
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
[ | |
{ | |
"key": "ctrl+1", | |
"command": "workbench.action.focusFirstEditorGroup" | |
}, | |
{ | |
"key": "ctrl+2", | |
"command": "workbench.action.focusSecondEditorGroup" | |
}, | |
{ | |
"key": "ctrl+3", | |
"command": "workbench.action.focusThirdEditorGroup" | |
}, | |
{ | |
"key": "cmd+1", | |
"command": "workbench.action.openEditorAtIndex1" | |
}, | |
{ | |
"key": "cmd+2", | |
"command": "workbench.action.openEditorAtIndex2" | |
}, | |
{ | |
"key": "cmd+3", | |
"command": "workbench.action.openEditorAtIndex3" | |
}, | |
{ | |
"key": "cmd+4", | |
"command": "workbench.action.openEditorAtIndex4" | |
}, | |
{ | |
"key": "cmd+5", | |
"command": "workbench.action.openEditorAtIndex5" | |
}, | |
{ | |
"key": "cmd+6", | |
"command": "workbench.action.openEditorAtIndex6" | |
}, | |
{ | |
"key": "cmd+7", | |
"command": "workbench.action.openEditorAtIndex7" | |
}, | |
{ | |
"key": "cmd+8", | |
"command": "workbench.action.openEditorAtIndex8" | |
}, | |
{ | |
"key": "cmd+9", | |
"command": "workbench.action.openEditorAtIndex9" | |
}, | |
{ | |
"key": "cmd+shift+v", | |
"command": "pasteAndIndent.action", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "cmd+;", | |
"command": "workbench.action.tasks.test" | |
}, | |
{ | |
"key": "cmd+'", | |
"command": "workbench.action.terminal.focus" | |
}, | |
{ | |
"key": "cmd+r", | |
"command": "workbench.action.debug.start", | |
"when": "!inDebugMode" | |
}, | |
{ | |
"key": "f5", | |
"command": "-workbench.action.debug.start", | |
"when": "!inDebugMode" | |
} | |
] |
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.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/__pycache__": true, | |
"**/.cache": true, | |
"**/.eggs": true, | |
"**/.mypy_cache": true, | |
"**/*.min.css": true, | |
"**/*.min.js": true, | |
"**/*.js.map": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/venv": true, | |
"**/tags": true, | |
"**/build": true, | |
"**/*.wav": true, | |
"**/*.gz": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/**": true, | |
"**/venv/**": true | |
}, | |
"python.workspaceSymbols.exclusionPatterns": ["**/site-packages/**", ".eggs"], | |
"workbench.iconTheme": "easy-icons", | |
"workbench.welcome.enabled": false, | |
"editor.renderLineHighlight": "gutter", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 14, | |
"terminal.integrated.fontSize": 14, | |
"terminal.external.osxExec": "iTerm.app", | |
"editor.minimap.enabled": false, | |
"editor.renderIndentGuides": false, | |
"explorer.openEditors.visible": 0, | |
"typescript.check.tscVersion": false, | |
"window.newWindowDimensions": "inherit", | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"tslint.autoFixOnSave": true, | |
"eslint.run": "onSave", | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"python.formatting.provider": "yapf", | |
"python.formatting.yapfArgs": [ | |
"--style", | |
"{dedent_closing_brackets: true, indent_dictionary_value: false}" | |
], | |
"[json]": { | |
"editor.formatOnSave": true, | |
"editor.tabSize": 2 | |
}, | |
"[javascript]": { | |
"editor.formatOnSave": true, | |
"editor.tabSize": 2 | |
}, | |
"prettier.semi": false, | |
"debug.openExplorerOnEnd": true, | |
"workbench.colorTheme": "One Dark Pro", | |
"html.format.wrapLineLength": 100 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment