Mac下VSCode设置iTerm2终端样式

先看下最终的样子,色值还可以调,我本机使用的是iTerm2


1.png

自己配置了iTerm2, 导致VSCode上的终端有乱码,然后想着肯定可以修改,就去问了下度娘,好多说在设置中配置下这两个参数:

"terminal.integrated.shell.linux": "/bin/zsh",
or
"terminal.integrated.shell.osx":"/bin/zsh",

然而我本地的默认已经使用了"/bin/zsh",这是再配置iTerm2时设置的。修改后仍然不正确,那肯定是其他问题。然后在文档中(参考文档 https://code.visualstudio.com/docs/getstarted/settings)继续寻找,直到看到下面的一段:

 // Controls the font family of the terminal, this defaults to `editor.fontFamily`'s value.
  "terminal.integrated.fontFamily": "",

心想难道只是字体的问题,就抱着试试的心态修改字体为iTerm2中的字体


2.png

然后,就没有然后了,就是最终的样子。
如果设置了上面一句,有错误提示或者不好使,可以再加上下面这句:

"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace,Meslo LG L for Powerline",

你可能感兴趣的:(Mac下VSCode设置iTerm2终端样式)