vscode打开配置文件

宝剑锋从磨砺出,梅花香自苦寒来

vscode打开配置文件_第1张图片

vscode打开配置文件_第2张图片

再送上我的phper的配置

{
    //拆分配置文件
    "workbench.settings.useSplitJSON": true,
    //关闭java导包效果
    "explorer.compactFolders": false,
    //开启鼠标滚轮调整大小
    "editor.mouseWheelZoom": true,
    //配置默认终端为GIT(git-bash安装路径随本地安装更改)
    "terminal.integrated.shell.windows": "C:\\Development\\Git\\bin\\bash.exe",
    //配置GIT路径(git安装路径随本地安装更改)
    "git.path": "C:\\Development\\Git\\bin\\git.exe",
    //禁用内置的php提示
    "php.suggest.basic": false,
    //指定php.exe的路径(php安装路径随本地安装更改)
    "php.executablePath": "H:\\phpstudy8\\Extensions\\php\\php7.3.4nts\\php.exe",
  
    //autoprefixer2.2.0 保存文件自动给css加前缀 3版本目前不会用
    "autoprefixer.formatOnSave": true,
    "autoprefixer.browsers": [
        "last 2 versions",
        "> 5%"
    ],
    //该插件可以在手机真机调试前提是手机和pc共用同一个无线网
    "liveServer.settings.donotShowInfoMsg": true,
    "liveServer.settings.ChromeDebuggingAttachment": false,

    //例如,以下代码可以将后缀为 .tpl 的 Smarty 模板文件关联成 PHP 语法
    "files.associations":{
        "*.tpl": "php",
        "*.wpy": "vue",
        "*.js":"html",
    }
 
}

你可能感兴趣的:(Other)