# vscode 远程终端不能打开 zsh

远程终端打开 zsh 报错 The terminal process failed to launch: Path to shell executable "zsh" is not a file or a symlink

问题原因:没有配置好 zsh 路径

解决:打开 vscode 首选项.设置 ,输入 terminal.integrated.profiles.linux

。打开 setting.json,将以下代码添加上:

"terminal.integrated.profiles.linux": { 
        "bash": {
          "path": "bash"
        },
        "zsh": {
          "path": "/usr/bin/zsh"
        }
    },

ok,搞定!

# vscode 终端 zsh 乱码

打开设置,输入 terminal.integrated.font ,修改字体,这里我用的是 Powerline 字体,下载地址:https://github.com/powerline/fonts。

选择想要的字体进行安装,这里我选择 Space Mono For Powerline 进行安装。设置 vscode 的字体:

image-20211211110317510

最终效果:

image-20211211110644151