A clean UI for VS Code, user configuration
This file contains 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.fontLigatures": true, | |
"editor.glyphMargin": false, | |
"editor.lineNumbers": "off", | |
"editor.snippetSuggestions": "top", | |
"editor.tabCompletion": true, | |
"editor.minimap.enabled": false, | |
"explorer.confirmDelete": false, | |
"explorer.openEditors.visible": 0, | |
"window.title": "${rootName}${separator}${activeEditorMedium}", | |
"window.zoomLevel": 0, | |
"window.clickThroughInactive": false, | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#303030", | |
"statusBar.debuggingBackground": "#511f1f", | |
"statusBar.noFolderBackground": "#222225" | |
}, | |
"workbench.colorTheme": "Tomorrow Night Eighties", | |
"workbench.fontAliasing": "antialiased", | |
"workbench.iconTheme": "vs-seti", | |
"workbench.activityBar.visible": false, | |
"workbench.editor.tabSizing": "shrink", | |
"workbench.sideBar.location": "left", | |
"workbench.settings.enableNaturalLanguageSearch": false // Disables Bing searches... yeah.... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment