Home > Development Tools > VSCode > body text

What should I do if vscode cannot change the font?

藏色散人
Release: 2020-04-05 10:09:03
Original
5123 people have browsed it

What should I do if vscode cannot change the font?

#What should I do if the font cannot be changed in vscode?

The default font of vscode doesn’t look good. I want to change the font. Here’s how to change the font:

Recommended: "vscode tutorial"

First, open the settings page and search for font, as shown in the picture:

What should I do if vscode cannot change the font?

The following properties in the settings are related to the font:

// 控制字体系列。
  "editor.fontFamily": "Consolas, 'Courier New', monospace",
  // 启用字体连字
  "editor.fontLigatures": false,
  // 以像素为单位控制字号。
  "editor.fontSize": 14,
  // 控制字体粗细。
  "editor.fontWeight": "normal",
Copy after login

Then, on the right Add the corresponding settings in the user settings on the side (remember to add a comma before adding):

"editor.fontFamily": "Fira Code",//后边的引号中写上要设置的字体类型,个人比较喜欢Fira Code
"editor.fontLigatures": true,//这个控制是否启用字体连字,true启用,false不启用,这里选择启用
  "editor.fontSize": 14,//设置字体大小,这个不多说都明白
"editor.fontWeight": "normal",//这个设置字体粗细,可选normal,bold,"100"~"900"等,选择合适的就行
Copy after login

Then save, the font will be applied successfully.

PS: If you want to change the font, at least the font must be installed on the computer, otherwise the setting will be useless.

Attached is the installation of Fira Code font:

Download the font at https://github.com/tonsky/FiraCode, scroll down in readmine.md, and you will see the download link (As shown below),

What should I do if vscode cannot change the font?

Click to download the font installation package. It is a zip compressed package. After compressing it, find the ttf folder and you will see several ttf files

What should I do if vscode cannot change the font?

Select all, right-click to install. You can see the font in the Windows Control Panel, Fonts, and the installation is complete.

View Windows fonts: Enter the control panel, change the viewing mode to large icons, and click on the font

What should I do if vscode cannot change the font?

What should I do if vscode cannot change the font?

What should I do if vscode cannot change the font?##

The above is the detailed content of What should I do if vscode cannot change the font?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template