Skip to content

Instantly share code, notes, and snippets.

@cdesch
Created March 19, 2018 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdesch/ea618b2ac045949740b5c1ee5186c3c1 to your computer and use it in GitHub Desktop.
Save cdesch/ea618b2ac045949740b5c1ee5186c3c1 to your computer and use it in GitHub Desktop.
{
"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