Last active
June 25, 2019 20:29
-
-
Save mattdennewitz/7667065204706a1aeebdd208e3d242ca to your computer and use it in GitHub Desktop.
dennewitz vscode settings
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
// Place your key bindings in this file to overwrite the defaults | |
[{ | |
"key": "ctrl+x g", | |
"command": "workbench.action.gotoLine", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+down", | |
"command": "spaceBlockJumper.moveDown", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+space", | |
"command": "editor.action.triggerSuggest", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+h", | |
"command": "extension.dash.specific", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+x 0", | |
"command": "workbench.action.closeActiveEditor", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+x b", | |
"command": "workbench.action.openPreviousRecentlyUsedEditorInGroup", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+x 3", | |
"command": "workbench.action.splitEditor", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+up", | |
"command": "spaceBlockJumper.moveUp", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+right", | |
"command": "cursorWordStartRight", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+left", | |
"command": "cursorWordStartLeft", | |
"when": "editorTextFocus" | |
},{ | |
"key": "ctrl+x ctrl+f", | |
"command": "workbench.action.quickOpen" | |
}] |
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
{ | |
"window.zoomLevel": 0, | |
"editor.fontSize": 15.5, | |
"editor.cursorStyle": "block", | |
"editor.wordWrap": "on", | |
"editor.minimap.enabled": false, | |
"workbench.colorCustomizations": { | |
"editor.background": "#dedede", | |
"editor.foreground": "#444444", | |
"editorLineNumber.foreground": "#333333", | |
"statusBar.background": "#0328EB", | |
"editorCursor.foreground": "#777777" | |
}, | |
"editor.tokenColorCustomizations": { | |
"strings": "#536dfe", | |
"numbers": "#2962FF", | |
"functions": "#0328EB", | |
"types": "#3949AB", | |
"comments": "#8a8a8a" | |
}, | |
"workbench.editor.enablePreview": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.sideBar.location": "left", | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"workbench.activityBar.visible": false, | |
"files.exclude": { | |
"**/__pycache__": true, | |
"**/.DS_Store": true, | |
"**/.git": true, | |
"**/.hg": true, | |
"**/.serverless": true, | |
"**/.svn": true, | |
"**/.webpack": true, | |
"**/*.pyc": true, | |
"**/*~": true, | |
"**/CVS": true, | |
"**/node_modules/": true, | |
"**/public": true | |
}, | |
"extensions.ignoreRecommendations": false, | |
"files.associations": { | |
"*.sql": "sql", | |
"*.pyx": "python", | |
"*.pxi": "python" | |
}, | |
"python.linting.enabled": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"[python]": { | |
"editor.formatOnSave": true | |
}, | |
"python.pythonPath": "", | |
"python.formatting.provider": "yapf", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"terminal.integrated.rendererType": "dom", | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.colorTheme": "Bonsai", | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
} |
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
{ | |
"window.zoomLevel": 0, | |
"editor.fontSize": 15, | |
"editor.fontFamily": "Input Mono Condensed", | |
"editor.cursorStyle": "block", | |
"editor.wordWrap": "on", | |
"workbench.colorTheme": "Bonsai", | |
"editor.minimap.enabled": false, | |
"window.nativeTabs": true, | |
"workbench.colorCustomizations": { | |
"editor.background": "#f5f5f5", | |
"editor.foreground": "#555555", | |
"editorLineNumber.foreground": "#333333", | |
"statusBar.background": "#0328EB", | |
"editorCursor.foreground": "#777777" | |
}, | |
"editor.tokenColorCustomizations": { | |
"strings": "#7986CB", | |
"numbers": "#2962FF", | |
"functions": "#0328EB", | |
"types": "#3949AB", | |
"comments": "#9E9E9E" | |
}, | |
"workbench.editor.enablePreview": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.sideBar.location": "left", | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"workbench.activityBar.visible": false, | |
"workbench.fontAliasing": "antialiased", | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/node_modules/": true, | |
"**/*.pyc": true, | |
"**/*~": true, | |
"**/__pycache__": true | |
}, | |
"python.disablePromptForFeatures": [ | |
"pylint" | |
], | |
"extensions.ignoreRecommendations": false, | |
"files.associations": { | |
"*.sql": "sql", | |
"*.pyx": "python", | |
"*.pxi": "python" | |
}, | |
"python.linting.enabled": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"[python]": { | |
"editor.formatOnSave": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment