VS Code 用户设置 解决卡顿问题

{
    "git.ignoreLegacyWarning": true,
    "editor.fontSize": 12,
    "editor.minimap.enabled": 
    true,
    
    "C_Cpp.autocomplete": 
    "Default",
    
    "[cpp]": {   
    "editor.quickSuggestions": 
    true   
    },
    
    "[c]": {    
    "editor.quickSuggestions": 
    true    
    },

    "workbench.iconTheme": 
    "vscode-icons",
    "git.ignoreLimitWarning": true,
    "files.associations": {
            "istream": "cpp",
            "*.tcc": "cpp",
            "cctype": "cpp",
            "clocale": "cpp",
            "cstdint": "cpp",
            "cstdio": "cpp",
            "cstdlib": "cpp",
            "cwchar": "cpp",
            "cwctype": "cpp",
            "exception": "cpp",
            "initializer_list": "cpp",
            "iosfwd": "cpp",
            "iostream": "cpp",
            "new": "cpp",
            "ostream": "cpp",
            "streambuf": "cpp",
            "type_traits": "cpp"
    },
    "files.autoSave": "afterDelay",
    "search.followSymlinks": false
}

猜你喜欢

转载自blog.csdn.net/hubinbin595959/article/details/84230237