macos下面的终端设置成了 iterm2.app
但 Visual Studio Code 的内置终端还是原来的,导致一些字体图标显示为乱码,如果想让它与 iterm2设置的一样,需要进行以下操作:
下载powerline等宽字体
任意目录下载字体
1 | git clone https://github.com/abertsch/Menlo-for-Powerline.git |
找到这几个字体,双击安装即可。
设置settings.json
添加如下几行
1 | "terminal.integrated.shell.osx": "/bin/zsh", |
如果希望终端中运行iTerm2,再添加如下两行
1 | "terminal.explorerKind": "external", |