Last active
May 16, 2020 01:11
-
-
Save nothke/f56d96a54458ed95761ba8c40a1d48a7 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
| { | |
| "files.exclude": { | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "**/*.meta": true | |
| }, | |
| "editor.renderWhitespace": "none", | |
| "csharp.suppressDotnetInstallWarning": true, | |
| "editor.renderControlCharacters": false, | |
| "csharp.referencesCodeLens.enabled": false, | |
| "workbench.preferredHighContrastColorTheme": "Noctis High Contrast", | |
| "workbench.preferredDarkColorTheme": "Visual Studio Dark", | |
| "workbench.colorCustomizations": { | |
| "[Default Dark+]": { | |
| "editor.background": "#000000", | |
| "panel.background": "#000000", | |
| "activityBar.background": "#000000", | |
| "activityBar.inactiveForeground": "#252525", | |
| "sideBar.background": "#101010", | |
| "sideBar.border": "#454545", | |
| "titleBar.activeForeground": "#5e5e5e", | |
| "titleBar.activeBackground": "#000000", | |
| "tab.inactiveBackground": "#151515", | |
| "statusBar.background": "#000000", | |
| "statusBar.foreground": "#a5a5a5", | |
| "editorGroupHeader.tabsBackground": "#f50e0e", | |
| "editorGroupHeader.noTabsBackground": "#000000", | |
| "editorLineNumber.foreground": "#404040", | |
| "editorIndentGuide.background": "#000000", | |
| "editorGroup.border": "#151515", | |
| "scrollbarSlider.background": "#151515", | |
| } | |
| }, | |
| "editor.tokenColorCustomizations": { | |
| "[Default Dark+]": { | |
| "variables": "#e6e6e6", | |
| "functions": "#ffe58f", | |
| "comments": "#35afaf", | |
| "numbers": "#ffd900", | |
| } | |
| }, | |
| "editor.fontFamily": "Consolas, 'Courier New', monospace", // Ubuntu Mono, Inconsolata SemiBold, | |
| "editor.fontLigatures": true, | |
| "editor.fontWeight": "normal", | |
| "editor.snippetSuggestions": "top", | |
| "window.zoomLevel": 0, | |
| "editor.fontSize": 16, | |
| "editor.letterSpacing": 0.5, | |
| "editor.mouseWheelZoom": true, | |
| "editor.codeActionsOnSave": null, | |
| "zenMode.centerLayout": false, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment