zoukankan      html  css  js  c++  java
  • VS Code 中的settings.js 配置

    {
        "workbench.iconTheme": "vscode-icons",
        
        "files.encoding": "utf8",
        "editor.renderWhitespace": "none",
        "explorer.confirmDelete": false,
        "window.menuBarVisibility": "classic",
        "files.autoSave": "afterDelay",
        "git.autofetch": true,
        "git.enableSmartCommit": true,
        "breadcrumbs.enabled": false,
        "editor.accessibilitySupport": "auto",
        "editor.multiCursorModifier": "alt",
        "editor.minimap.enabled": false,
        "editor.wordWrap": "wordWrapColumn",
        "editor.wordWrapColumn": 80,
        "editor.rulers": [80],
        "explorer.confirmDragAndDrop": false,
        "explorer.sortOrder": "type",
        "git.decorations.enabled": false,
        "explorer.decorations.badges": false,
        "workbench.sideBar.location": "left",
        "editor.tabSize": 2,
        "vsicons.dontShowNewVersionMessage": true,
        "[vue]": {
            "editor.defaultFormatter": "octref.vetur"
        },
        "[html]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[css]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[less]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[javascript]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "prettier.tabWidth": 2,
        "prettier.endOfLine": "crlf",
        "[json]": {
    
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        //不开启node_module
        "files.exclude": {
            "node_modules/": true
        },
        "files.associations": {
            "*.json": "jsonc"
        },
        // 更改为gitBush
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
        },
        "search.followSymlinks": false,
        "[typescript]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[dart]": {
            "editor.formatOnSave": true,
            "editor.formatOnType": true,
            "editor.wordWrap": "wordWrapColumn",
            "editor.wordWrapColumn": 80,
            "editor.rulers": [80],
            "editor.selectionHighlight": false,
            "editor.suggest.snippetsPreventQuickSuggestions": false,
            "editor.suggestSelection": "first",
            "editor.tabCompletion": "onlySnippets",
            "editor.wordBasedSuggestions": false
        },
        "workbench.colorTheme": "Default Dark+",
        "editor.fontSize": 18,
        "diffEditor.ignoreTrimWhitespace": true,
        "editor.suggest.snippetsPreventQuickSuggestions": false,
        "editor.suggestSelection": "first",
        "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    }
    
  • 相关阅读:
    leetcode10 正则表达式匹配 dp
    AS技巧合集「调试技巧篇」
    AS技巧合集「编码技巧篇」
    AS技巧合集「常用技巧篇」
    Android studio:Groovy 与 Gradle 基础【三】
    Android Studio :Android Studio 与 Gradle 深入【二】
    Android studio:从Eclipse迁移到Android Studio【一】
    Anroid Studio入门
    54. Android中adb常用命令及应用常用目录
    53. Android常用工具类
  • 原文地址:https://www.cnblogs.com/qingheshiguang/p/14840752.html
Copyright © 2011-2022 走看看