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
  • 相关阅读:
    Extension Methods(扩展方法)
    linux面试题
    渗透测试 day4
    渗透测试 day3
    渗透测试 day2
    渗透测试 day1
    9.3 网络安全介绍
    9.2 Iptables
    8.30 进程管理
    8.29 linux的网络
  • 原文地址:https://www.cnblogs.com/hellofangfang/p/14010320.html
Copyright © 2011-2022 走看看