windows环境下vscode+babun配置

Install

vscode
babon
点击上述链接然后install,很简单

upgrade babon

默认的babon中的软件版本有点低,需要先升级一下
这里升级时需要注意:一定要使用"C:\Users\xxx.babun\update.bat"进行升级
直接用pact update git会导致git失败,无法修复,这个是个bug

vscode 配置 terminal 启动 babaon

"startanyshell.shells": [
    {
      "description": "Babun",
      "command": "C:\\Users\\xxx\\.babun\\cygwin\\bin\\mintty.exe /bin/env CHERE_INVOKING=1 /bin/zsh.exe"
    },
    {
      "description": "Windows Command Prompt",
      "command": "start \"%description%\" /WAIT %comspec%"
    },
    {
      "description": "Windows Powershell",
      "command": "start \"%description%\" powershell.exe -noexit"
    }
  ]

record

你可能感兴趣的:(windows环境下vscode+babun配置)