Last active
November 28, 2016 15:28
-
-
Save nobitagit/e3f65041be8274d40dcf759995361f63 to your computer and use it in GitHub Desktop.
VS code settings
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.renderWhitespace": true, | |
"editor.tabSize": 2, | |
"editor.wrappingColumn": 100, | |
// Control the cursor animation style, possible values are 'blink', 'smooth', 'phase', 'expand' and 'solid' | |
"editor.cursorBlinking": "expand", | |
"editor.insertSpaces": true, | |
"editor.rulers": [ | |
100 | |
], | |
"files.associations": { | |
"*.es": "javascript" | |
} | |
} | |
// WORK | |
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.renderWhitespace": true, | |
"editor.tabSize": 2, | |
"editor.wrappingColumn": 100, | |
"editor.trimAutoWhitespace": true, | |
"html.suggest.angular1": true, | |
// Control the cursor animation style, possible values are 'blink', 'smooth', 'phase', 'expand' and 'solid' | |
"editor.cursorBlinking": "expand", | |
"eslint.run": "onSave", | |
"eslint.enable": true, | |
"editor.rulers": [ | |
100 | |
], | |
"files.associations": { | |
"*.es": "javascript" | |
}, | |
"files.trimTrailingWhitespace": false, | |
"editor.autoClosingBrackets": false, | |
"editor.quickSuggestions": true, | |
"editor.suggestOnTriggerCharacters": false, | |
"terminal.integrated.shellArgs.osx": ["-l"], // this command runs the .bash_profile at load time | |
"gitlens.codeLens.visibility": "auto", | |
"gitlens.codeLens.location": "document", | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment