美文网首页
个人喜好VSCode配置和插件

个人喜好VSCode配置和插件

作者: 本大少_ | 来源:发表于2017-07-11 13:26 被阅读0次

    设置文件:

    {
        "window.zoomLevel": 1,
        "git.confirmSync": false,
        "editor.fontFamily": "Source Code Pro",
        "workbench.colorTheme": "One Dark Pro",
        "editor.fontSize": 14,
        "editor.lineHeight": 23,
        "npm-intellisense.importES6": true,
        "npm-intellisense.importQuotes": "'",
        "npm-intellisense.importLinebreak": ";\r\n",
        "npm-intellisense.importDeclarationType": "const",
        "terminal.integrated.shell.windows": "C:\\Windows\\Sysnative\\cmd.exe"
    }
    

    以下是常用的扩展:

    Sort lines修改快捷键执行命令:
    去“键盘快捷方式”-高级的Json里面写:

    [
        {
            "key":"F9",
            "command":"sortLines.sortLinesLineLength"
        }
    ]
    

    相关文章

      网友评论

          本文标题:个人喜好VSCode配置和插件

          本文链接:https://www.haomeiwen.com/subject/qgpphxtx.html