Last active
December 17, 2018 15:48
-
-
Save andersr/b97dd9307cef95190134c10e22b8cf55 to your computer and use it in GitHub Desktop.
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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.wordWrap": "on", | |
"terminal.integrated.fontFamily": "Source Code Pro for Powerline", | |
"files.insertFinalNewline": true, | |
"editor.formatOnSave": true, | |
"editor.snippetSuggestions": "top", | |
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib", | |
"workbench.iconTheme": "vscode-icons", | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"**/*.js": { | |
"when": "$(basename).ts" | |
}, | |
"**/*.js.map": true, | |
"**/*.jsx.map": true, | |
"**/*?.js": { | |
"when": "$(basename).tsx" | |
}, | |
"**/*.jsx": { | |
"when": "$(basename).tsx" | |
} | |
}, | |
"window.zoomLevel": 1, | |
"workbench.colorTheme": "One Dark Pro", | |
"gitlens.codeLens.enabled": false, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.autoClosingTags": false, | |
"workbench.sideBar.location": "left", | |
"tslint.autoFixOnSave": true, | |
"files.autoSave": "onFocusChange", | |
"editor.renderWhitespace": "boundary" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment