Last active
February 26, 2026 08:43
-
-
Save ArtemAvramenko/66757f4a69e38cc114975e8b7cda6693 to your computer and use it in GitHub Desktop.
Visual Studio Code 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
| { | |
| "workbench.colorTheme": "Visual Studio Light", | |
| "editor.inlineSuggest.enabled": true, | |
| "editor.fontFamily": "Codescopix, Cascadia Mono2, Consolas, 'Courier New', monospace", | |
| "editor.fontSize": 14, | |
| "editor.formatOnSave": true, | |
| "editor.minimap.enabled": false, | |
| "git.enabled": false, | |
| "workbench.tree.indent": 16, | |
| "workbench.tree.renderIndentGuides": "none", | |
| "nsis.compiler.pathToMakensis": "C:\\Program Files (x86)\\NSIS\\makensis", | |
| "window.title": "${rootName}${separator}${appName}", | |
| "editor.quickSuggestions": { | |
| "other": "inline", | |
| "comments": "inline", | |
| "strings": "inline" | |
| }, | |
| "workbench.activityBar.location": "top", | |
| "workbench.iconTheme": "vs-nomo-dark", | |
| "javascript.updateImportsOnFileMove.enabled": "never", | |
| "workbench.secondarySideBar.defaultVisibility": "hidden", | |
| "diffEditor.renderSideBySide": true, | |
| "codesnap.showWindowControls": false, | |
| "diffEditor.useInlineViewWhenSpaceIsLimited": false, | |
| "workbench.editor.empty.hint": "hidden", | |
| "workbench.colorCustomizations": { | |
| "debugConsole.infoForeground": "#222222", | |
| "debugConsole.errorForeground": "#cc0000", | |
| "debugConsole.warningForeground": "#777700", | |
| "debugConsole.sourceForeground": "#0088cc" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment