vscode settings.json

Revision en1, by liusixun2025, 2026-04-30 16:50:41
You can use this settings.
{
    "editor.mouseWheelZoom": true, "editor.trimAutoWhitespace": false,
    "editor.fontFamily": "consolas, 'courier new', simsun, 'dejavu sans mono', 'microsoft yahei'",
    "editor.unicodeHighlight.invisibleCharacters": false,  "editor.unicodeHighlight.ambiguousCharacters": false,
    "editor.detectIndentation": false,  "editor.renderWhitespace": "all",
    "update.mode": "none",  "extensions.autoUpdate": false,  "update.enableWindowsBackgroundUpdates": false,
    "files.defaultLanguage": "cpp", "editor.renderLineHighlight": "gutter", "editor.links": false,
    "render-special-chars.include": ["0080-10FFFF"], "render-special-chars.except": [
        "一-鿿", "¡-¬®-žǍ-ǜǞ-ȳḀ-ỹ", "Ѐ-҂Ҋ-ӿ", "ء-ي٠-٭", "Ά-ώ", "ぁ-んァ-ヶー", "가-힣", "ʃȝɑɔɜʌɒəɪʊ",
        "–—‘-•…ˆˇˌ˘-˝", "!%,():-Za-z[]{}~、-〗", "⁴-⁹←-∑∓√-∵∷-⊋⊕⊙⊥⌒⌈-⌋⅓-⅞‰", "①-⓿❶-❿",
    ], "highlight-bad-chars.additionalUnicodeChars": ["Ѐ-҂Ҋ-ӿ‚Đ" ], 
    "highlight-bad-chars.badCharDecorationStyle": { "backgroundColor": "#aae7", "borderColor": "#abef" },
    "highlight-unexpected-characters.rules": ["–Ά-ώ∁"],
    "C_Cpp.default.compilerPath": "D:\\mingw\\bin\\g++.exe", "workbench.colorTheme": "Tomorrow",
    "extensions.experimental.affinity": { "miku3920.vscode-render-special-chars": 2,
        "wengerk.highlight-bad-chars": 2, "gizeta.highlight-unexpected-characters": 2,
        "brunnerh.insert-unicode": 2, "alefragnani.pascal": 2 },
    "workbench.colorCustomizations": {
        "editor.background": "#e5f7e7", "editorWhitespace.foreground": "#bbbd", "editor.selectionBackground": "#6ca8", 
        "editorBracketHighlight.foreground1": "#b11", "editorBracketHighlight.foreground2": "#972",
        "editorBracketHighlight.foreground3": "#06b", "editorBracketHighlight.foreground4": "#c60",
        "editorBracketHighlight.foreground5": "#81a", "editorBracketHighlight.foreground6": "#581",
        "editor.wordHighlightBackground": "#bbb4"
    },
    "editor.tokenColorCustomizations": {
        "types": "#972", "numbers": "#c60", "comments": "#777", "variables": "#333", "keywords": "#96A",
        "textMateRules": [
            {"scope": "variable.parameter", "settings": {"foreground": "#c60", "fontStyle": "" } },
            {"scope": "constant.language", "settings": {"foreground": "#96A", "fontStyle": "" } },
            {"scope": "keyword.other", "settings": {"foreground": "#389", "fontStyle": "" } },
            {"scope": "keyword.other.unit", "settings": {"foreground": "#c60", "fontStyle": "" } },
            {"scope": "entity.name.type.class", "settings": {"foreground": "#972", "fontStyle": "" } }, 
            {"scope": "constant.character", "settings": {"foreground": "#c60", "fontStyle": "" } }, 
            {"scope": "constant.other", "settings": {"foreground": "#96A", "fontStyle": "" } }, 
        ]
    },
    "C_Cpp.inactiveRegionOpacity": 1,
    "C_Cpp.inactiveRegionForegroundColor": "#777",
    "workbench.editor.empty.hint": "hidden",
}
Tags vscode, settings, beautiful, earth

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English liusixun2025 2026-04-30 16:50:41 3048 Initial revision (published)