Skip to content

Instantly share code, notes, and snippets.

@danieltorrecillas
Created December 6, 2017 23:32
Show Gist options
  • Save danieltorrecillas/e7581091e930e64b6d2e519d5505e428 to your computer and use it in GitHub Desktop.
Save danieltorrecillas/e7581091e930e64b6d2e519d5505e428 to your computer and use it in GitHub Desktop.
vscode settings
{
"editor.tabSize": 2,
"editor.scrollBeyondLastLine": false,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.colorTheme": "Default Light+",
"workbench.panel.location": "bottom",
"editor.minimap.enabled": false,
"terminal.integrated.cursorBlinking": true,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"tmp": true,
"**/migrate/*.rb": true,
"app/assets/config": true,
"app/assets/images": true,
"app/assets/javascripts": true
},
"window.restoreWindows": "none",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"tmp/": true,
"vendor/": true,
"public/": true,
"log/": true,
"lib/": true,
"bin/": true,
".bundle": true,
"config/environments": true,
"config/locales": true,
"config/initializers": true,
"config/application.rb": true,
"config/boot.rb": true,
"config/cable.yml": true,
"config/database.yml": true,
"config/environment.rb": true,
"config/puma.rb": true,
"config/secrets.yml": true,
"config/spring.rb": true,
"config.ru": true,
"LICENSE": true,
"package.json": true,
"README.md": true,
".gitignore": true,
"Rakefile": true,
".byebug_history": true,
"**/.keep": true
},
"git.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment