Skip to content

Instantly share code, notes, and snippets.

@derencius
Last active May 10, 2017 04:14
Show Gist options
  • Save derencius/0d7827d181af9b31643c8af1c023c5f2 to your computer and use it in GitHub Desktop.
Save derencius/0d7827d181af9b31643c8af1c023c5f2 to your computer and use it in GitHub Desktop.
vscode config
{
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.renderWhitespace": "boundary",
"editor.renderIndentGuides": true,
"editor.scrollBeyondLastLine": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true
},
"files.associations": {
"*.jbuilder": "ruby",
"Vagrantfile": "ruby"
},
"files.trimTrailingWhitespace": true,
"telemetry.enableTelemetry": false,
"workbench.iconTheme": "vs-seti",
"workbench.editor.enablePreview": false,
"editor.rulers": [80],
"ruby.rubocop.executePath": "/Users/marcus/.rbenv/shims/",
"editor.tabCompletion": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"editor.formatOnType": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment