VScode配置GItbash为终端

VScode配置Gitbash为终端

  • 一、VScode配置Gitbash为终端

一、VScode配置Gitbash为终端

  1. 按“ctrl” 和 “,” 组合键盘,进入设置:
    VScode配置GItbash为终端_第1张图片
  2. 在“搜索设置”输入:“terminal.integrated.profiles.windows”,进入json编辑:
    VScode配置GItbash为终端_第2张图片
  3. 将原来的选中,按“/”注释掉,然后输入:
{
    "window.zoomLevel": 3,
    "remote.SSH.remotePlatform": {
        "Unbantu": "linux"
    },
    "typescript.disableAutomaticTypeAcquisition": true,
    "C_Cpp.errorSquiggles": "Enabled",
    "cmake.configureOnOpen": true,
    "terminal.integrated.profiles.windows": {
        "gitBash": {
            "path": "D:\\Git\\bin\\bash.exe",
        }
    }
}

如图:
VScode配置GItbash为终端_第3张图片

  1. 重启VScode即可在终端发现Gitbash。
    VScode配置GItbash为终端_第4张图片

你可能感兴趣的:(环境配置,vscode,ide,编辑器)