-修改字体,使用FiraCode字体
下载地址:https://github.com/tonsky/FiraCode
点击下载安装包,是个zip压缩包包,解压后找到ttf文件夹,会看到几个ttf文件
ttf文件夹 ttf文件
然后全选双击安装这些字体,安装成功后 开始配置vscode。
打开vscode,搜索font,在settings.json中编辑
image.png将下面代码粘贴以下配置并进行保存。
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
如果保存成功之后不起作用的话,重新启动vscode。
- 添加背景图
安装插件:background-cover
image.png
修改setting.json
"update.enableWindowsBackgroundUpdates": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"backgroundCover.imagePath": "/Users/a/tools/util/background-vscode/4.jpeg",
"backgroundCover.randomImageFolder": "/Users/a/tools/util/background-vscode",
"backgroundCover.opacity": 0.6,
"backgroundCover.autoStatus": true,
- 英译汉
安装插件:
Chinese (Simplified) Language Pack for Visual Studio Code
image.png
网友评论