在settings.json中编辑
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Popping and Locking Black Theme",
// 控制字体系列。
"editor.fontFamily": "Consolas, 'Courier New', monospace",
// 启用字体连字
"editor.fontLigatures": false,
// 以像素为单位控制字号。
"editor.fontSize": 14,
// 控制字体粗细。
"editor.fontWeight": "normal",
"editor.fontFamily": "Fira Code", //后边的引号中写上要设置的字体类型,个人比较喜欢Fira Code
"editor.fontLigatures": true, //这个控制是否启用字体连字,true启用,false不启用,这里选择启用
"editor.fontSize": 15, //设置字体大小,这个不多说都明白
"editor.fontWeight": "normal", //这个设置字体粗细,可选normal,bold,"100"~"900"等,选择合适的就行
}
版权声明:本文为m0_46157338原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。