VSCode配置文件

  • VSCode配置文件
{
    // "C_Cpp.commentContinuationPatterns": [
    //     "/**"
    // ],
    // "C_Cpp.default.cStandard": "gnu23",
    // "C_Cpp.default.cppStandard": "gnu++23",
    // "C_Cpp.default.intelliSenseMode": "gcc-x64",
    // "C_Cpp.files.exclude": {
    //     "**/.vs": true,
    //     "**/.vscode": true
    // },
    // "C_Cpp.inlayHints.autoDeclarationTypes.enabled": true,
    // "C_Cpp.inlayHints.autoDeclarationTypes.showOnLeft": true,
    // "C_Cpp.inlayHints.parameterNames.suppressWhenArgumentContainsName": false,
    // "C_Cpp.inlayHints.referenceOperator.enabled": true,
    // "C_Cpp.inlayHints.referenceOperator.showSpace": true,
    // "C_Cpp.intelliSenseEngineFallback": "enabled",
    // "Codegeex.Chat.fontSize": 16,
    // "Codegeex.DisabledFor": {
    //     "cpp": false,
    //     "jsonc": true
    // },
    // "Codegeex.EnableExtension": false,
    // "Codegeex.License": "",
    // "Codegeex.Privacy": false,
    // "C_Cpp.intelliSenseEngine": "disabled",
    "clangd.arguments": [
        "--background-index",
        "--compile-commands-dir=${workspaceFolder}/.vscode"
    ],
    "cmake.configureOnOpen": false,
    "cmake.showOptionsMovedNotification": false,
    "codegeex.codeLens.enableCodeLens": "disable",
    "editor.detectIndentation": false,
    "editor.fontFamily": "Iosevka, Inconsolata, 'Noto Sans CJK SC', monospace",
    "editor.fontSize": 20,
    "editor.guides.indentation": false,
    "editor.inlayHints.enabled": "off",
    "editor.minimap.enabled": false,
    "editor.mouseWheelZoom": true,
    "editor.smoothScrolling": true,
    "editor.stickyScroll.enabled": false,
    "editor.tabSize": 4,
    "explorer.autoReveal": false,
    "explorer.decorations.badges": false,
    "explorer.decorations.colors": false,
    "explorer.openEditors.sortOrder": "alphabetical",
    "gitblame.inlineMessageEnabled": true,
    "gitblame.inlineMessageFormat": "${author.name}, (${time.ago}) \u00b7 ${commit.summary}",
    "github.copilot.enable": {
        "*": true,
        "cpp": false,
        "markdown": false,
        "plaintext": false,
        "scminput": false
    },
    "highlightwords.defaultMode": 3,
    "highlightwords.showSidebar": true,
    "terminal.integrated.fontFamily": "'Iosevka Term', Inconsolata, 'Noto Sans CJK SC'",
    "terminal.integrated.fontSize": 24,
    "terminal.integrated.smoothScrolling": true,
    "window.commandCenter": false,
    "workbench.editorAssociations": {
        "*.md": "vscode.markdown.preview.editor"
    },
    "workbench.list.smoothScrolling": true,
    "workbench.startupEditor": "none",
    "workbench.productIconTheme": "feather-vscode",
    "workbench.iconTheme": "vscode-icons",
    "chat.useAgentSkills": true,
    "workbench.activityBar.location": "top",
    "terminal.integrated.defaultProfile.linux": "fish",
    "files.insertFinalNewline": true,
    "window.autoDetectColorScheme": true,
    "window.customTitleBarVisibility": "auto",
    "workbench.preferredDarkColorTheme": "Dark Modern",
    "workbench.colorCustomizations": {
        "[Dark Modern]": {
            "editor.background": "#282c34",
            "editor.lineHighlightBorder": "#242432",
            "editor.lineHighlightBackground": "#282c34",
            "sideBar.background": "#282c34",
            "sideBar.border": "#242432",
            "activityBar.background": "#282c34",
            "activityBar.border": "#242432",
            "titleBar.activeBackground": "#282c34",
            "titleBar.inactiveBackground": "#242432",
            "titleBar.border": "#242432",
            "statusBar.background": "#282c34",
            "statusBar.border": "#242432",
            "sideBarSectionHeader.background": "#282c34",
            "sideBarSectionHeader.border": "#242432",
            "panel.background": "#282c34",
            "panel.border": "#1f1f1f",
        }
    },
    "workbench.colorTheme": "Dark Modern",
    "workbench.editor.showTabs": "single",
    "chat.disableAIFeatures": true,
    "terminal.integrated.initialHint": false,
    "editor.fontLigatures": true
}
posted @ 2026-06-14 23:00  ZhenNA  阅读(3)  评论(0)    收藏  举报