Skip to content

Instantly share code, notes, and snippets.

@nobitagit
Last active November 28, 2016 15:28
Show Gist options
  • Save nobitagit/e3f65041be8274d40dcf759995361f63 to your computer and use it in GitHub Desktop.
Save nobitagit/e3f65041be8274d40dcf759995361f63 to your computer and use it in GitHub Desktop.
VS code settings
// 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