Bootstrap

配置vscode解决code runner乱码

参考链接
不建议用修改注册表的方式!
下面采用比较科学的方式:
在vscode中依次打开 file ->reference->setting在 setting.json 中编辑。
之后将以下代码粘贴并保存。

"terminal.integrated.profiles.windows": {
        "PowerShell": {
          "source": "PowerShell", //一般推荐使用powershell
          "overrideName": true,
          "args": ["-NoExit", "/c", "chcp 65001"],
          "icon": "terminal-powershell",
          "env": {
            "TEST_VAR": "value"
          }
        }
      },
    "terminal.integrated.defaultProfile.windows": "PowerShell",
;