Created
September 14, 2016 14:04
-
-
Save jahio/152fd92c0e73eec9b2ca29389da34981 to your computer and use it in GitHub Desktop.
Visual Studio Code - User Settings Overrides
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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