Created
October 12, 2025 08:06
-
-
Save haasr/1eaff092caf4b64bec6f7b43b5955286 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
| /* | |
| 1. Open command palette (Cmd shift p) | |
| 2. Type "install ext" and choose the option "Extensions: Install Extensions" | |
| 3. In the Extensions Marketplace, search "minimal". Select "Minimal" by nichabosh and install it. | |
| 4. Open command palette (Cmd shift p) | |
| 5. Type "open user settings" and choose the option "Preferences: Open User Settings (JSON)" | |
| 6. Paste below and save: | |
| */ | |
| { | |
| "workbench.colorCustomizations": { | |
| "editor.lineHighlightBackground": "#1a2f27", | |
| "editor.background": "#0d1b15", | |
| "editor.selectionBackground": "#2d4a3f", | |
| "selection.background": "#4a7c6aa8", | |
| "editorGutter.background": "#111f1a", | |
| "editorLineNumber.activeForeground": "#7dd3a7", | |
| "editorLineNumber.foreground": "#4a6b5a", | |
| "activityBar.background": "#1a3d2f", | |
| "activityBarBadge.background": "#0a5038", | |
| "activityBarBadge.foreground": "#b4f0d4", | |
| "sideBar.background": "#162b22", | |
| "sideBarTitle.foreground": "#d0d0d0", | |
| "sideBarSectionHeader.background": "#0f2119", | |
| "list.activeSelectionBackground": "#2d5244", | |
| "list.inactiveSelectionBackground": "#2d5244c5", | |
| "list.hoverBackground": "#2d5244", | |
| "titleBar.activeBackground": "#1a4d38", | |
| "titleBar.activeForeground": "#eeeeee", | |
| "titleBar.border": "#0f2d22", | |
| "statusBar.background": "#1d576c", | |
| "statusBar.foreground": "#ffffff", | |
| "statusBar.noFolderBackground": "#00445d", | |
| "statusBar.debuggingBackground": "#28728e", | |
| "statusBar.debuggingForeground": "#ffffff", | |
| "input.background": "#1a2f27", | |
| "input.foreground": "#7dd3a7", | |
| "input.placeholderForeground": "#6b9b82", | |
| "input.border": "#4a7c6a", | |
| "editorGroupHeader.tabsBackground": "#0f2d22", | |
| "tab.activeBackground": "#1f3d32", | |
| "tab.inactiveBackground": "#16332896", | |
| "tab.activeForeground": "#ffffff", | |
| "tab.inactiveForeground": "#aaaaaa", | |
| "tab.hoverBackground": "#2d5244", | |
| "scrollbarSlider.background": "#1a2f27", | |
| "scrollbarSlider.hoverBackground": "#243d33", | |
| "scrollbarSlider.activeBackground": "#2d5244e7", | |
| "scrollbar.shadow": "#0a1a12", | |
| "focusBorder": "#5fb882", | |
| "terminal.foreground": "#d0ead6", | |
| "terminal.background": "#0d1b15" | |
| }, | |
| "editor.fontSize": 15, | |
| "terminal.integrated.fontSize": 14, | |
| "workbench.colorTheme": "Minimal", | |
| "notebook.cellToolbarLocation": { | |
| "default": "right", | |
| "jupyter-notebook": "left" | |
| }, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "workbench.editorAssociations": { | |
| "*.svg": "default" | |
| }, | |
| "[python]": { | |
| "editor.rulers": [ | |
| { | |
| "column": 79, | |
| "color": "#2d524430" | |
| } | |
| ] | |
| }, | |
| "[javascript]": { | |
| "editor.rulers": [ | |
| { | |
| "column": 90, | |
| "color": "#5fb88230" | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment