Skip to content

Instantly share code, notes, and snippets.

@RickCarlino
Created June 13, 2017 14:36
Show Gist options
  • Save RickCarlino/8bb0fa1f3013befb92b31b24d6cd4766 to your computer and use it in GitHub Desktop.
Save RickCarlino/8bb0fa1f3013befb92b31b24d6cd4766 to your computer and use it in GitHub Desktop.
My VS Code stuff
// Place your settings in this file to overwrite the default settings
{
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true,
"**/dist": true,
"**/deps": true,
"**/_build": true
},
"jscpd.minTokens": 60,
"editor.rulers": [
75,
80
],
"editor.cursorBlinking": "solid",
"editor.formatOnSave": true,
"editor.fontSize": 20,
"editor.fontWeight": "bold",
"editor.fontFamily": "Ubuntu Mono",
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.check.tscVersion": false,
"window.zoomLevel": -1,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.wordWrap": true,
"workbench.colorTheme": "Kimbie Dark",
"workbench.welcome.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment