Last active
September 4, 2019 13:59
-
-
Save marweck/2cf4dfb6b99fa6e8010dee56f34e8052 to your computer and use it in GitHub Desktop.
VSCode settings
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
| { | |
| "editor.fontSize": 16, | |
| "editor.tabSize": 2, | |
| "editor.glyphMargin": true, | |
| "terminal.integrated.fontSize": 16, | |
| "terminal.integrated.shell.osx": "/opt/local/bin/bash", | |
| "files.trimTrailingWhitespace": true, | |
| "files.autoSave": "afterDelay", | |
| "javascript.suggest.completeFunctionCalls": true, | |
| "typescript.suggest.completeFunctionCalls": true, | |
| "javascript.preferences.importModuleSpecifier": "relative", | |
| "typescript.preferences.importModuleSpecifier": "relative", | |
| "javascript.validate.enable": false, | |
| "prettier.singleQuote": true, | |
| "workbench.iconTheme": "vs-seti", | |
| "window.zoomLevel": 0, | |
| "extensions.ignoreRecommendations": false, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.autoReveal": false, | |
| "git.enableSmartCommit": true, | |
| "git.autofetch": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment