- Install https://www.departuremono.com/ font
- Install and configure Custom UI Style extension
- Copy settings.json into your vscode settings.json
- Use with any theme you like - I like "GitHub Dark Default"
Last active
February 16, 2025 10:59
-
-
Save easwee/f78c14ed5d42ba069a1ba8f609f5f4a2 to your computer and use it in GitHub Desktop.
Easwee's VS Code config
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
{ | |
"git.confirmSync": false, | |
"git.autoStash": true, | |
"terminal.integrated.scrollback": 10000, | |
"terminal.integrated.fontFamily": "'Departure Mono', monospace", | |
"terminal.integrated.fontSize": 14, | |
"editor.fontFamily": "'Departure Mono', monospace", | |
"editor.fontSize": 14, | |
"editor.rulers": [80, 100], | |
"editor.renderWhitespace": "all", | |
"editor.experimentalWhitespaceRendering": "font", | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
"editor.cursorBlinking": "blink", | |
"editor.cursorStyle": "line", | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs": "active", | |
"editor.minimap.showSlider": "always", | |
"editor.minimap.maxColumn": 85, | |
"editor.minimap.renderCharacters": true, | |
"editor.minimap.size": "fit", | |
"editor.accessibilitySupport": "off", | |
"editor.unicodeHighlight.invisibleCharacters": true, | |
"explorer.compactFolders": false, | |
"files.insertFinalNewline": true, | |
"files.trimTrailingWhitespace": true, | |
"files.trimFinalNewlines": true, | |
"workbench.editor.decorations.colors": true, | |
"workbench.editor.enablePreview": false, | |
"workbench.tree.renderIndentGuides": "always", | |
"workbench.tree.indent": 11, | |
"workbench.tree.enableStickyScroll": true, | |
"workbench.activityBar.location": "top", | |
"workbench.layoutControl.enabled": false, | |
"workbench.panel.defaultLocation": "right", | |
"workbench.colorCustomizations": { | |
"editorRuler.foreground": "#282828", | |
"tree.indentGuidesStroke": "#999999" | |
}, | |
"debug.toolBarLocation": "docked", | |
"breadcrumbs.enabled": true, | |
"markdown.preview.scrollEditorWithPreview": true, | |
"markdown.preview.scrollPreviewWithEditor": true, | |
"markdown.validate.enabled": true, | |
"telemetry.telemetryLevel": "off", | |
"window.commandCenter": false, | |
"window.menuBarVisibility": "toggle", | |
"window.title": "${activeEditorLong}", | |
"window.titleBarStyle": "custom", | |
"window.customTitleBarVisibility": "auto", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"workbench.colorTheme": "GitHub Dark Default", | |
"custom-ui-style.stylesheet": { | |
".monaco-workbench .part.sidebar > .content": { | |
"font-family": "'Departure Mono', monospace" | |
}, | |
".monaco-workbench .part.editor > .content .title.tabs": { | |
"font-family": "'Departure Mono', monospace;", | |
"font-size": "14px" | |
}, | |
".monaco-workbench .part.editor > .content .editor-group-container > .title .tabs-container > .tab .tab-label a": { | |
"font-family": "'Departure Mono', monospace;", | |
"font-size": "14px" | |
}, | |
".monaco-workbench .part.titlebar": { | |
"font-family": "'Departure Mono', monospace;", | |
"font-size": "14px" | |
}, | |
".monaco-workbench .part.titlebar .monaco-action-bar.vertical": { | |
"font-family": "'Departure Mono', monospace;", | |
"font-size": "14px" | |
}, | |
".monaco-workbench .part.statusbar": { | |
"font-family": "'Departure Mono', monospace;", | |
"font-size": "14px" | |
}, | |
" .titlebar ": { | |
"font-family": "'Departure Mono', monospace;", | |
"font-size": "14px" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment