vscode 常用配置

{

    "breadcrumbs.enabled": true,
    "editor.detectIndentation": false,
    "editor.fontSize": 16,
    "editor.minimap.enabled": true,
    "editor.multiCursorModifier": "alt",
    "editor.formatOnType": true,
    "editor.wordWrap": "on",
    "explorer.confirmDelete": false,
    "docthis.authorName": "liangyanxiang",
    "docthis.includeAuthorTag": true,
    "docthis.includeDescriptionTag": true,
    "files.autoSave": "onWindowChange",
    "files.trimTrailingWhitespace": true,
    "workbench.startupEditor": "newUntitledFile",
    "git.confirmSync": false,
    "git.enableSmartCommit": true,
    "gitlens.advanced.messages": {
        "suppressCommitHasNoPreviousCommitWarning": false,
        "suppressCommitNotFoundWarning": false,
        "suppressFileNotUnderSourceControlWarning": false,
        "suppressGitVersionWarning": false,
        "suppressLineUncommittedWarning": false,
        "suppressNoRepositoryWarning": false,
        "suppressResultsExplorerNotice": false,
        "suppressShowKeyBindingsNotice": true,
        "suppressUpdateNotice": false,
        "suppressWelcomeNotice": true
    },
    "git.path": "D:\\Git\\cmd\\git.exe",
    "git.autofetch": true,
    "gitlens.keymap": "chorded",
    "prettier.tabWidth": 4,
    "prettier.trailingComma": "all",
    "prettier.semi": false,
    "sync.gist": "6ef99ffc6f73538797fe1e1411ad87be",
    "sync.autoDownload": true,
    "sync.autoUpload": true,
    "sync.forceDownload": false,
    "sync.quietSync": false,
    "sync.askGistName": false,
    "sync.removeExtensions": true,
    "sync.syncExtensions": true,
    "search.followSymlinks": false,
    "search.smartCase": true,
    "workbench.iconTheme": "vscode-icons",
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.options.tabSize": 4,
    "terminal.external.windowsExec": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
    "[yaml]": {
        "editor.insertSpaces": true,
        "editor.tabSize": 4,
        "editor.autoIndent": false
    },
    "tslint.autoFixOnSave": true,
    "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
    "window.zoomLevel": 0,
    "window.restoreWindows": "all",
    "typescript.updateImportsOnFileMove.enabled": "always",
    "javascript.updateImportsOnFileMove.enabled": "always",
    "workbench.statusBar.feedback.visible": false,
}

你可能感兴趣的:(vscode 常用配置)