将vs代码终端字体更改为非等宽字体

时间:2018-06-22 16:26:36

标签: terminal visual-studio-code vscode-settings

是否可以将vs代码终端字体更改为非等宽字体?

我使用zsh shell并具有适合我主题的字体。
顺便说一句,我使用的字体是Melso LG L Regular for Powerline

当我尝试在用户设置中更改terminal.integrated.fontFamily时,我得到了...。

terminal font

有什么办法解决吗?

预先感谢

3 个答案:

答案 0 :(得分:0)

在vs代码中无法将终端字体更改为非等宽字体。
没办法

答案 1 :(得分:0)

使用以下设置。它在ubuntu的VScode终端中对我有用。

{{1}}

使用任何设置。下面是我从VSCode终端输出的终端。

enter image description here

答案 2 :(得分:0)

WitVault 的回答一开始并没有解决我的问题,但却是我解决问题的基础。 Ubuntu 20.04 无法识别 Meslo LG M DZ ...。我查看了 Ubuntus 字体应用程序,在那里我看到字体名称是 MesloLGMDZ Nerd Font Mono。因此,查看您的操作系统字体应用程序可能有助于找到正确的字体名称。

使用这些设置(在 settings.json 中)它对我有用:

{
    "terminal.integrated.fontFamily": "MesloLGLDZ Nerd Font Mono",
    "terminal.integrated.fontSize": 14
}

要更改 setting.json,请按 shift + ctrl + P 并输入 Open Setting 并按 Enter。