Last active
November 23, 2018 10:50
-
-
Save zeromancer/a55ff052a8847aa20f61b23152f07527 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
| // Place your settings in this file to overwrite the default settings | |
| { | |
| // General | |
| "extensions.autoUpdate": true, | |
| "telemetry.enableTelemetry": false, | |
| "update.channel": "none", | |
| // Visual | |
| "window.zoomLevel": 0, | |
| "window.restoreWindows": "all", | |
| "workbench.colorTheme": "Darcula Theme from IntelliJ", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "vsicons.dontShowNewVersionMessage": true, | |
| // Hide Sidebars | |
| // "docker.showExplorer": false, | |
| "workbench.statusBar.visible": false, | |
| "explorer.openEditors.visible": 0, | |
| "explorer.confirmDelete": false, | |
| "projectManager.treeview.visible": false, | |
| // Editor | |
| "editor.tabSize": 2, | |
| "editor.minimap.enabled": false, | |
| "editor.scrollBeyondLastLine": false, | |
| "editor.formatOnSave": true, | |
| "editor.tabCompletion": "on", | |
| "editor.suggest.localityBonus": true, | |
| "files.enableTrash": false, | |
| "files.autoSave": "onWindowChange", | |
| "files.insertFinalNewline": true, | |
| // extension: Bracket Pair Colorizer | |
| "bracketPairColorizer.forceUniqueOpeningColor": true, | |
| // extension: markdownlint | |
| "markdownlint.config": { | |
| "default": true, | |
| "MD034": false, | |
| }, | |
| // extension: TypeScript Hero | |
| "typescriptHero.imports.stringQuoteStyle": "\"", | |
| "typescriptHero.imports.multiLineWrapThreshold": 120, | |
| // "typescriptHero.imports.organizeOnSave": true, | |
| "typescriptHero.imports.insertSemicolons": false, | |
| // Typescript | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| // OS specific | |
| "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe", | |
| "typescript.npm": "C:\\Program Files\\nodejs\\npm.cmd", | |
| "git.path": "C:\\Users\\dsiewert\\AppData\\Local\\Programs\\Git\\bin\\git.exe", | |
| "git.confirmSync": false, | |
| "git.autofetch": true, | |
| "git.rebaseWhenSync": false, | |
| "window.titleBarStyle": "custom" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment