vscode仿照source insight配置备份

User setting

{
    "svn.enableProposedApi": "none",
    "files.eol": "\n",
    "files.exclude": {
        "**/.vscode": true
    },
    "vsicons.dontShowNewVersionMessage": true,
    "files.autoSave": "afterDelay",
    "workbench.iconTheme": "vscode-icons",
    "workbench.startupEditor": "newUntitledFile",
    "workbench.enableExperiments": false,
    "telemetry.enableCrashReporter": false,
    "C_Cpp.updateChannel": "Insiders",
    "C_Cpp.clang_format_sortIncludes": true,
    "editor.minimap.enabled": false,
    "workbench.colorCustomizations": {
        "list.inactiveSelectionBackground": "#C5DEF0",
        "sideBar.background": "#C5D2DE",
        "sideBar.foreground": "#0a0a0a",
        "editor.background": "#D2DED1",
        "editor.foreground": "#0c0101",
        "sideBarSectionHeader.background": "#CAC9C9",
        "sideBarSectionHeader.foreground": "#000000",
        "activityBar.border": "#FFFFFF",
        "statusBar.background": "#525357",
        "scrollbarSlider.activeBackground": "#77D4CB",
        "scrollbarSlider.hoverBackground": "#8CE6DA",
        "badge.background": "#81CA91"
    },
    "editor.tokenColorCustomizations": {
        "numbers": "#2247EB",
        "comments": "#800080",
        "functions": "#0D7C28",
        "variables": "#ff0000",
        "types": "#FF0000",
        "keywords": "#008030",
        "strings": "#66B6BB",
        "textMateRules": [
            {
                "scope":[
                    "comment",
                    "comment.block",
                    "comment.block.documentation",
                    "comment.line"
                ],
                "settings": {
                    "foreground": "#800080",
                    "fontStyle": "italic"
                }
            }
        ]
    },
    "editor.fontSize": 17,
    "workbench.colorTheme": "Default Light+",
    "editor.fontWeight": "500",
    "workbench.sideBar.location": "left",
    "window.zoomLevel": 0,
    "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
    "go.useLanguageServer": true
}

remote server setting

{
    // 该配置文件为系统全局配置文件
    // C/C++ 插件配置
    "C_Cpp.clang_format_path": "/usr/bin/clang-format",
    "C_Cpp.clang_format_style": "file",
    "C_Cpp.clang_format_fallbackStyle": "none",
    "C_Cpp.clang_format_sortIncludes": false,
    "C_Cpp.intelliSenseEngine": "Tag Parser",
    "C_Cpp.intelliSenseEngineFallback": "Enabled",
    "C_Cpp.default.cppStandard": "c++11",
    "C_Cpp.default.intelliSenseMode": "gcc-x64",
    "C_Cpp.default.cStandard": "c99",
    "C_Cpp.autoAddFileAssociations": true,
    "C_Cpp.configurationWarnings": "Enabled",
    "C_Cpp.default.systemIncludePath": [
        "/usr/include/c++/5",
        "/usr/include/x86_64-linux-gnu/c++/5",
        "/usr/include/c++/5/backward",
        "/usr/lib/gcc/x86_64-linux-gnu/5/include",
        "/usr/local/include", 
        "/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed",
        "/usr/include/x86_64-linux-gnu",
        "/usr/include"
    ],
    "C_Cpp.formatting": "Default",
    "C_Cpp.errorSquiggles": "Enabled",
    "C_Cpp.autocomplete": "Disabled",
    "[cpp]": {
        "editor.quickSuggestions": true
    },
    "[c]": {
        "editor.quickSuggestions": true
    },
    // clang 插件配置
    "clang.executable": "/usr/bin/clang",
    "clang.diagnostic.enable": true,
    "clang.completion.enable": true,
    "clang.completion.triggerChars": [
        ".",
        ":",
        ">"
    ],
    // 编辑器相关配置
    "editor.defaultFormatter": "ms-vscode.cpptools",
    "editor.formatOnType": true,
    "editor.tabCompletion": "onlySnippets",
    "editor.fontSize": 17,
    "editor.tabSize": 4,
    "editor.insertSpaces": true,
    "editor.selectionHighlight": true,
    "editor.fontWeight": "500",
    // 相关类型文件屏蔽
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/*.a": true,
        "**/*.o": true,
        "**/*.so": true,
        "**/*.so.*": true
    },
    "files.autoSave": "onFocusChange",
    "terminal.integrated.cwd": ".",
    "files.eol": "\n",
    "hexdump.sizeDisplay": 52428800,
    "git.alwaysShowStagedChangesResourceGroup": true,
    "workbench.editor.enablePreview": false,
    "workbench.enableExperiments": false,
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/.svn": true,
        "**/.git": true
    },
    "svn.path": "/usr/bin/svn",
    "include-autocomplete.extensions": [
        "",
        ".h",
        ".hpp",
        ".hxx",
        ".hh"
    ],
}

你可能感兴趣的:(Linux,C/C++)