Last active
September 18, 2018 14:10
-
-
Save johnatandias/d5e2672cb0a053b940585204039f7c39 to your computer and use it in GitHub Desktop.
User settings - VS code
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.sideBar.location": "right", | |
| "window.zoomLevel": -1, | |
| "files.autoSave": "afterDelay", | |
| "gitlens.advanced.messages": { | |
| "suppressShowKeyBindingsNotice": true | |
| }, | |
| "workbench.iconTheme": "vscode-icons", | |
| "files.associations": { | |
| "*.webapp": "json" | |
| }, | |
| "editor.wordWrap": "on", | |
| "editor.minimap.enabled": true, | |
| "gitlens.historyExplorer.enabled": true, | |
| "gitlens.defaultDateStyle": "absolute", | |
| "editor.fontSize": 18, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.tabSize": 2, | |
| "editor.renderIndentGuides": false, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "workbench.editor.closeEmptyGroups": false, | |
| "workbench.colorTheme": "Tomorrow Night Bright", | |
| "prettier.singleQuote": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "sync.gist": "sync", | |
| "sync.quietSync": false, | |
| "sync.removeExtensions": true, | |
| "sync.syncExtensions": true, | |
| "sync.autoDownload": false, | |
| "sync.autoUpload": false, | |
| "sync.forceDownload": false, | |
| "workbench.colorCustomizations": { | |
| "activityBar.background": "#000", | |
| "activityBar.border": "#1C1F22", | |
| "sideBar.background": "#000", | |
| "sideBar.border": "#000", | |
| "sideBar.foreground": "#fff", | |
| "editor.background": "#000", | |
| "terminal.background": "#000" | |
| }, | |
| "projectManager.groupList": true, | |
| "window.titleBarStyle": "custom", | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment