Skip to content

Instantly share code, notes, and snippets.

@mrded
Last active January 17, 2017 14:28
Show Gist options
  • Save mrded/39a186442074188fc877 to your computer and use it in GitHub Desktop.
Save mrded/39a186442074188fc877 to your computer and use it in GitHub Desktop.
VS Code config.
[
{ "key": "shift+cmd+backspace", "command": "editor.action.deleteLines", "when": "editorTextFocus" },
{ "key": "cmd+d", "command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" },
{ "key": "shift+cmd+down", "command": "editor.action.moveLinesDownAction", "when": "editorTextFocus" },
{ "key": "shift+cmd+up", "command": "editor.action.moveLinesUpAction", "when": "editorTextFocus" },
{ "key": "cmd+shift+n", "command": "workbench.action.quickOpen" },
{ "key": "cmd+1", "command": "workbench.view.explorer" },
{ "key": "cmd+5", "command": "workbench.view.debug" }
]
{
"editor.fontFamily": "input",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.wrappingColumn": -1,
"editor.renderWhitespace": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"filePicker.alternateFileNameMatching": true,
"files.trimTrailingWhitespace": false,
"editor.acceptSuggestionOnEnter": false,
"workbench.editor.showTabs": false,
"files.associations": {
"*.inc": "php",
"*.module": "php",
"*.tmpl": "html"
},
"window.zoomLevel": 0,
"git.confirmSync": false,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment