Last active
July 17, 2019 09:59
-
-
Save amid11/3606baaaadcd1f6f24e89acd20a0b568 to your computer and use it in GitHub Desktop.
VSCode Settings (July 17 2019)
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
| { | |
| // Window | |
| "window.restoreWindows": "none", | |
| "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}", | |
| "window.zoomLevel": 0, | |
| // Workbench | |
| "workbench.colorTheme": "Github Light Theme - Gray", | |
| "workbench.iconTheme": "ayu", | |
| "workbench.settings.editor": "json", | |
| "workbench.editor.labelFormat": "short", | |
| "workbench.editor.tabSizing": "shrink", | |
| "workbench.sideBar.location": "right", | |
| "workbench.startupEditor": "welcomePage", | |
| "workbench.colorCustomizations": { | |
| "sideBar.border": "#c1c2c2a9", | |
| // "activityBar.border": "#1E272C", | |
| // "tab.border": "#9dccffa4", | |
| "tab.activeBackground": "#9dccffa4", | |
| "list.hoverBackground": "#cae9b0a4", | |
| "list.focusBackground": "#be85ffa4" | |
| }, | |
| // Editor | |
| "editor.fontFamily": "'Iosevka medium', 'Fira Mono For Powerline', 'monospace', monospace, 'Droid Sans Fallback'", | |
| "editor.minimap.enabled": false, | |
| "editor.mouseWheelZoom": true, | |
| "editor.rulers": [ | |
| 80 | |
| ], | |
| "editor.tabSize": 2, | |
| "editor.wordWrap": "on", | |
| "editor.fontSize": 19, | |
| "editor.lineHeight": 21, | |
| "editor.letterSpacing": 0.6, | |
| "editor.fontWeight": "500", | |
| "editor.fontLigatures": true, | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| // Files | |
| "files.trimTrailingWhitespace": true, | |
| // Explorer | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.openEditors.visible": 0, | |
| "explorer.confirmDelete": false, | |
| // Terminal | |
| "terminal.integrated.cursorBlinking": false, | |
| "terminal.integrated.cursorStyle": "underline", | |
| "terminal.integrated.fontFamily": "'Iosevka medium'", | |
| "terminal.integrated.fontSize": 15, | |
| "terminal.integrated.fontWeight": "500", | |
| // Git | |
| "git.autofetch": true, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment