vscode常用配置

那个白熊發表於2024-09-21
{
    "workbench.tree.indent": 24,
    "workbench.colorCustomizations": {
        "editorLineNumber.activeForeground": "#9e3c2da2",
        "editor.lineHighlightBorder":"#74423a77"
    },
    "editor.rulers": [
        {
            "column": 80,
            "color": "#fba414",
        },
        {
            "column": 120,
            "color": "#ee3f4d"
        }
    ],
    "workbench.startupEditor": "none",
    "editor.defaultFormatter": "charliermarsh.ruff",
    "git.openRepositoryInParentFolders": "never",
    "cmake.showOptionsMovedNotification": false,
    "[go]": {
        "editor.defaultFormatter": "golang.go"
    },
    "python.createEnvironment.trigger": "off",
    "update.showReleaseNotes": false,
    "editor.accessibilitySupport": "off",
    "files.exclude": {
        "**/__pycache__": true
    },
}

相關文章