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",
    }
    
  • 相关阅读:
    mysql 5.7 安装手册(for linux)
    Git服务器分类
    Git服务器安装详解及安装遇到问题解决方案
    使用git进行版本管理
    Git 忽略一些文件不加入版本控制
    Windows下搭建基于SSH的Git服务器
    linux系统下mysql跳过密码验证登录和创建新用户
    阅读《不止代码》之心得分享
    Sonar安装和常见问题解决
    Eclipse安装Sonarlint插件
  • 原文地址:https://www.cnblogs.com/qingheshiguang/p/14840752.html
Copyright © 2011-2022 走看看