Last active
June 17, 2024 14:37
-
-
Save vavrecan/49391cbd188852eff152843ee5ffa69b to your computer and use it in GitHub Desktop.
VSCode settings
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.zoomLevel": 0.7, | |
"terminal.integrated.fontFamily": "'Noto Mono', 'monospace', monospace", | |
"terminal.integrated.fontSize": 12, | |
"terminal.integrated.lineHeight": 1.2, | |
"editor.tabSize": 4, | |
"editor.fontFamily": "'Noto Mono', 'monospace', monospace", | |
"editor.fontSize": 11, | |
"editor.lineHeight": 1.6, | |
"editor.letterSpacing": 0.4, | |
"window.autoDetectColorScheme": true, | |
"workbench.colorTheme": "Default Dark Modern", | |
"workbench.preferredLightColorTheme": "Default Dark Modern", | |
"workbench.preferredHighContrastLightColorTheme": "Default Dark Modern", | |
"workbench.preferredHighContrastColorTheme": "Default Dark Modern", | |
"editor.semanticHighlighting.enabled": true, | |
"editor.minimap.autohide": true, | |
"editor.fontLigatures": false, | |
"editor.scrollbar.horizontalScrollbarSize": 5, | |
"editor.scrollbar.verticalScrollbarSize": 5, | |
"workbench.tree.indent": 22, | |
"workbench.tree.renderIndentGuides": "none", | |
"workbench.activityBar.location": "top", | |
"window.customTitleBarVisibility": "never", | |
"window.menuBarVisibility": "toggle", | |
"editor.definitionLinkOpensInPeek": false, | |
"breadcrumbs.icons": false, | |
"breadcrumbs.enabled": true, | |
"breadcrumbs.filePath": "on", | |
"terminal.integrated.defaultProfile.linux": "bash", | |
"terminal.integrated.profiles.linux": { | |
"bash": { | |
"path": "/usr/bin/flatpak-spawn", | |
"icon": "terminal", | |
"overrideName": true, | |
"args": ["--env=TERM=vscode", "--host", "script", "--quiet", "/dev/null"] | |
} | |
}, | |
"workbench.colorCustomizations": { | |
"[Default Dark Modern]": { | |
"editorBracketMatch.border": "#00000000", | |
"editorBracketMatch.background": "#ffffff33", | |
"editor.background": "#0d0d0d", | |
"editor.lineHighlightBorder": "#ff000000", | |
"editor.lineHighlightBackground": "#ffffff0b", | |
"editorGutter.background": "#171717", | |
"editorIndentGuide.background1": "#ffffff11", | |
"editorIndentGuide.activeBackground1": "#ffffff11", | |
"breadcrumb.background": "#171717", | |
"editorWidget.background": "#000000", | |
"editorWidget.border": "#ffffff0b", | |
"editorSuggestWidget.background": "#000000", | |
"editorSuggestWidget.border": "#ffffff0b", | |
"peekViewEditor.background": "#000000", | |
"peekView.border": "#ffffff0b", | |
"terminal.background": "#000000" | |
} | |
}, | |
"editor.tokenColorCustomizations": { | |
"[Default Dark Modern]": { | |
"comments": "#5a5a5a" | |
} | |
} | |
} |
Author
vavrecan
commented
Mar 2, 2024
experiment:
"window.zoomLevel": 1,
"terminal.integrated.fontFamily": "'JetBrains Mono', 'monospace', monospace",
"terminal.integrated.fontSize": 12,
"terminal.integrated.lineHeight": 1,
"editor.tabSize": 4,
"editor.fontFamily": "'JetBrains Mono', 'monospace', monospace",
"editor.fontSize": 11,
"editor.lineHeight": 1.5,
"editor.letterSpacing": 0.4,
"editor.fontLigatures": true,
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment