Skip to content

Instantly share code, notes, and snippets.

@lloss
Last active April 29, 2017 20:33
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 lloss/fa4ec967efced068863135f1892f48f7 to your computer and use it in GitHub Desktop.
Save lloss/fa4ec967efced068863135f1892f48f7 to your computer and use it in GitHub Desktop.
vscode config
{
"editor.fontFamily": "Hack",
"editor.fontSize": 17,
"editor.fontLigatures": true,
"editor.mouseWheelZoom": true,
"editor.insertSpaces": false,
"editor.quickSuggestionsDelay": 1,
"editor.renderWhitespace": false,
"editor.wordWrap": true,
"editor.lineHeight": 28,
"editor.formatOnSave": false,
"editor.mouseWheelScrollSensitivity": 1.1,
"editor.rulers": [
120
],
"editor.renderIndentGuides": true,
"editor.snippetSuggestions": "bottom",
"editor.roundedSelection": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules": true
},
"files.autoSave": "onFocusChange",
"typescript.check.tscVersion": false,
"vsicons.projectDetection.disableDetect": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment