VSCode常用插件配置
程序员文章站
2022-07-05 20:39:51
...
声明:参考视频:VSCode六款通用真香插件合集
- 插件1:background
- 记得去掉默认图片选项
"background.enabled": true,
"background.useDefault": false,
"background.customImages": [
"file:///E:/图片/vsbackground.png",
],
"background.style": {
"pointer-events": "none",
"position": "absolute",
"width": "100%",
"height": "100%",
"background-position": "center",
"background-repeat": "no-repeat",
"background-size": "100%,100%",
"opacity": 0.1
},
- 解决提示code损坏问题,下载下面插件
- 然后执行
- 插件2:Material Them
- 设置字体颜色:
"editor.tokenColorCustomizations": {
"comments": {
// 设置字体样式 加粗 下划线 斜体等
"fontStyle": "",
// 设置字体颜色
"foreground": "#DCDCDC"
},
},
- 插件3:Material Icon Them
- 插件4:indent-rainbow
插件5:
- 插件6:
- 记得勾选
上一篇: AJAX请求