Home > Development Tools > VSCode > body text

How to change font in vscode

藏色散人
Release: 2019-11-07 11:24:10
Original
11154 people have browsed it

How to change font in vscode

How to change the font in vscode?

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

Related recommendations: "vscode Usage Tutorial"

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

How to change font in vscode

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, Add the corresponding settings in the user settings on the right (remember to separate them with 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 and page down in readmine.md , you will see the download link (as shown below), click

How to change font in vscode

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

How to change font in vscode

and right-click to install. In the Windows Control Panel, you can see the font in 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

How to change font in vscode

How to change font in vscode

How to change font in vscode##

The above is the detailed content of How to change font in vscode. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!