Skip to content

Instantly share code, notes, and snippets.

@nicolasblanco
Created October 13, 2017 15:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save nicolasblanco/2cd000c924d02237600f0432044fb79e to your computer and use it in GitHub Desktop.
{
"window.zoomLevel": 0,
"editor.fontSize": 16,
"editor.tabSize": 2,
"window.openFilesInNewWindow": "off",
"files.insertFinalNewline": true,
"ruby.lint": {
"rubocop": true,
"ruby": true
},
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true,
"**/log": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true,
"**/bower_components/**": true,
"**/tmp/**": true,
"**/log/**": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/tmp": true
},
"editor.tabCompletion": true,
"editor.quickSuggestions": false,
"workbench.iconTheme": "vs-seti",
"editor.dragAndDrop": true,
"blankLine.languageIds": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"json",
"css",
"scss",
"ruby"
],
"editor.renderWhitespace": "boundary",
"typescript.check.tscVersion": false,
"files.associations": {
"*.slime": "slim",
"*.build": "dockerfile",
"*.release": "dockerfile"
},
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.fontAliasing": "antialiased"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment