Created
June 13, 2017 14:36
-
-
Save RickCarlino/8bb0fa1f3013befb92b31b24d6cd4766 to your computer and use it in GitHub Desktop.
My VS Code stuff
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 | |
{ | |
"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