美文网首页
vscode 自定义配置

vscode 自定义配置

作者: _若无 | 来源:发表于2020-03-25 21:08 被阅读0次

-修改字体,使用FiraCode字体

下载地址:https://github.com/tonsky/FiraCode

点击download下载

点击下载安装包,是个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

- 资源管理器菜单栏设置在右边

image.png

相关文章

网友评论

      本文标题:vscode 自定义配置

      本文链接:https://www.haomeiwen.com/subject/rpxfuhtx.html