VSCODE 插件
自己使用到的一些插件
因为工作原因,要换电脑了,记录下自己目前使用到的插件,免得以后重新搜索自己需要用的插件
1、background
2、Bracket Pair Colorizer
3、C/C++
4、Chinese (Simplified) Language Pack for VS Code
5、Indent-Rainbow
6、Keil Assistant
1.background
设置背景照片
在setting.json中加入以下代码就可以使用了
"background.enabled": true,
"background.useFront": false, //是否使用默认图片
"background.useDefault": false,
"background.customImages": [
"file:///D:/bx.jpg" //图片的路径
],
"background.style": {
"content": "''",
"pointer-events": "none",
"position": "absolute", //定位
"width": "100%",
"height": "100%",
"z-index": "99999",
"background.repeat": "no-repeat", //是否重复
"background-size": "100%,100%", //图片大小
"background-repeat": "no", //图片大小
"opacity": 0.2 //透明度
},