如何更改VS Code设置以使用JetBrains Mono字体


29

我已经下载并安装了JetBrains Mono字体https://www.jetbrains.com/lp/mono/

我试图设置VS Code以使用它。

我在我的settings.json文件中添加了以下几行:

    // Set the font
    "editor.fontFamily": "Consolas, 'Courier New', monospace", // Copied from current settings
    // Turn on font ligatures
    "editor.fontLigatures": true, // Override default value of false

我的问题是:editor.fontFamily要使JetBrains可以使用,我需要在该部分中填写什么?

我尝试过"editor.fontFamily": "JetBrains, Consolas, 'Courier New', monospace" 没有成功。


3
我还必须重新启动Visual Studio Code才能进行更改。
Alex Nolasco

Answers:


28

打开VSCode设置(代码->首选项->设置),然后将其添加到用户设置JSON文件的末尾:

  "editor.fontFamily": "JetBrains Mono",
  "editor.fontSize": 13,
  "editor.fontLigatures": true

13

基于提供的@Grekkq和@Gyliph,这是我的设置的外观:

    // Set the font
    "editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace",
    // Set the font size
    "editor.fontSize": 13,
    // Turn on font ligatures
    "editor.fontLigatures": true,
    // Set letter spacing
    "editor.letterSpacing": 0.4,
    // Enable smooth scrolling in the editor
    "editor.smoothScrolling": true,

将JetBrains Mono添加到当前字体系列列表中的技巧是'JetBrains Mono'用单引号引起来(因为字体名称中有空格)。


1
问:如果要使用已安装字体的中型粗体版本,该如何指定?
MMJ

2
@MMJ您可以使用“ editor.fontWeight”:“粗体”。对于中间权重,您还可以指定数字,例如“ editor.fontWeight”:“ 300”。代码完成显示所有可用的选项。
我。

3

这就足够了

"editor.fontFamily": "JetBrains Mono"

如果你也想连字

"editor.fontLigatures": true

2

首先,您将输入首选项->设置->文本编辑器->字体

然后您可以在其中单击并编辑您的settings.json

如何查找字体设置

然后,您可以在此处编辑设置,如下所示。这是我的字体设置(包括其中的JetBrains视觉演示!):

我的设置


0

最简单的方法是:打开设置Ctrl +,选择“文本编辑器”->“字体”,然后将此“ JetBrains Mono”添加到字体系列中。另外,您可以从那里更改字体的粗细和大小,然后重新启动VS代码以查看更改

在此处输入图片说明

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.