zoukankan      html  css  js  c++  java
  • vscode常用功能配置

     settings.json里复制下面代码

    {
        "workbench.sideBar.location": "left",
        "editor.fontSize": 18,
        "git.confirmSync": false,
        "git.autofetch": true,
        "eslint.run": "onSave",
        "workbench.iconTheme": "vscode-icons",
        "explorer.confirmDelete": false,
        "git.enableSmartCommit": true,
        "window.zoomLevel": 0,
        "vsicons.dontShowNewVersionMessage": true,
        "editor.wordWrap": "on",
        "files.autoSave": "onWindowChange",
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
        },
        "terminal.integrated.fontSize": 14,
        "gitlens.advanced.messages": {
            "suppressCommitHasNoPreviousCommitWarning": true,
            "suppressFileNotUnderSourceControlWarning": true
        },
        "explorer.confirmDragAndDrop": false,
        "debug.chrome.useV3": true,
        "workbench.startupEditor": "newUntitledFile",
        "diffEditor.renderSideBySide": true,
        "gitlens.gitCommands.closeOnFocusOut": true,
        "debug.console.fontSize": 15,
        "workbench.colorTheme": "Visual Studio Light",
        "gitlens.advanced.blame.customArguments": [],
        "liveServer.settings.donotShowInfoMsg": true,
    }

    功能说明:
    自动格式化代码
    自动闭合代码
    小括号花括号颜色区分
    git版本树
    1000ms后自动保存
    字体大小18px
  • 相关阅读:
    使用AChartEngine画图,项目总结
    Windows系统安装实验报告
    Linux系统安装实验报告
    vm虚拟机详细安装步骤
    L3-010. 是否完全二叉搜索树
    第13届景驰-埃森哲杯广东工业大学ACM程序设计大赛
    L2-021. 点赞狂魔
    L2-020. 功夫传人
    L2-019. 悄悄关注
    L2-017. 人以群分
  • 原文地址:https://www.cnblogs.com/hellofangfang/p/14010320.html
Copyright © 2011-2022 走看看