Skip to content

Instantly share code, notes, and snippets.

@jahio
Created September 14, 2016 14:04
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 jahio/152fd92c0e73eec9b2ca29389da34981 to your computer and use it in GitHub Desktop.
Save jahio/152fd92c0e73eec9b2ca29389da34981 to your computer and use it in GitHub Desktop.
Visual Studio Code - User Settings Overrides
// Place your settings in this file to overwrite the default settings
{
"editor.rulers": [80, 100],
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.mouseWheelZoom": true,
"editor.fontLigatures": true,
"editor.renderIndentGuides": true,
"editor.codeLens": true,
"diffEditor.ignoreTrimWhitespace": false,
"window.reopenFolders": "none",
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/log": true,
"**/.bundle": true,
"**/.bundler": true
},
"search.quickOpen.includeSymbols": true,
"git.enabled": false,
"terminal.external.windowsExec": "bash ~",
"terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\bash.exe",
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment