- Color Themes
- GitHub Light Default
- Light (Visual Studio)
- Icon set
- JetBrains New UI File Icon Theme Extended: jetbrains-file-icon-theme-auto
- Font: JetBrains Mono NL
Last active
June 4, 2026 07:41
-
-
Save odan/2cce08df2e4cdf7f84b2edfddeb9c21c to your computer and use it in GitHub Desktop.
VSCode Setup
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
| { | |
| "editor.fontSize": 16, | |
| "debug.console.fontSize": 16, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "editor.scrollbar.horizontalScrollbarSize": 14, | |
| "extensions.ignoreRecommendations": true, | |
| "explorer.confirmDelete": false, | |
| "terminal.integrated.initialHint": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "editor.fontFamily": "JetBrains Mono NL, Menlo, Monaco, 'Courier New', monospace", | |
| "editor.fontLigatures": true, | |
| "workbench.iconTheme": "jetbrains-file-icon-theme-auto", | |
| "json.schemas": [], | |
| "editor.wordWrap": "on", | |
| "editor.inlayHints.enabled": "off", | |
| "editor.rulers": [ | |
| 120 | |
| ], | |
| "workbench.editor.empty.hint": "hidden", | |
| "workbench.settings.applyToAllProfiles": [], | |
| "workbench.colorCustomizations": { | |
| "editor.background": "#ffffff", // main code background | |
| }, | |
| "markdownConverter.Parser.Toc.Enabled": true, | |
| "markdownConverter.Document.HeaderContent": { | |
| "Left": "", | |
| "Center": "", | |
| "Right": "" | |
| }, | |
| "markdownConverter.Document.FooterContent": { | |
| "Right": "<span class=\"pageNumber\"></span>/<span class=\"totalPages\"></span>" | |
| }, | |
| "git.confirmSync": false, | |
| "git.enableSmartCommit": true, | |
| "workbench.colorTheme": "GitHub Light Default", | |
| "editor.semanticTokenColorCustomizations": { | |
| "enabled": true, | |
| "rules": { | |
| "class": "#005cc5", | |
| "interface": "#005cc5", | |
| "type": "#005cc5", | |
| "method": "#6f42c1", | |
| "function": "#6f42c1", | |
| "property": "#24292e", | |
| "variable": "#24292e", | |
| "parameter": "#24292e", | |
| } | |
| }, | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "keyword", | |
| "storage" | |
| ], | |
| "settings": { | |
| "foreground": "#d73a49" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "string" | |
| ], | |
| "settings": { | |
| "foreground": "#22863a" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "constant.numeric" | |
| ], | |
| "settings": { | |
| "foreground": "#005cc5" | |
| } | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment