Created
March 19, 2018 15:27
-
-
Save cdesch/ea618b2ac045949740b5c1ee5186c3c1 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
{ | |
"files.autoSave": "onFocusChange", | |
"editor.tabSize": 2, | |
"workbench.colorTheme": "Solarized Dark", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"editor.rulers": [ | |
80 | |
], | |
"ruby.lint": { | |
"rubocop": { | |
"lint": true, | |
"rails": true | |
} | |
} | |
} | |
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "cmd+shift+.", | |
"command": "erb.toggleTags", | |
"when": "editorTextFocus && editorLangId == erb" | |
}, | |
{ | |
"key": "cmd+shift+down", | |
"command": "editor.action.moveLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "cmd+shift+up", | |
"command": "editor.action.moveLinesUpAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment