1000字范文,内容丰富有趣,学习的好帮手!
1000字范文 > vscode背景的更换_Vscode_更换背景

vscode背景的更换_Vscode_更换背景

时间:2023-01-26 09:23:09

相关推荐

vscode背景的更换_Vscode_更换背景

第一步

在插件中心输入background -> vscode-background -> install -> OK

第二步

文件 -> 首选项 -> 设置 -> 在搜索与设置框里输入“background” -> 点击settings.json ->

将下面代码全选复制 -> 回到vscode将settings.json里的代码全选粘贴 -> OK

注:背景图片自己找然后起好名找个文件存起来,然后将电脑地址栏的绝对路径复制到

"background.customImages":[

//这里是你们家女盆友或者男盆友照片的存放地址

"file:///盘符(C盘或D盘或E盘)/文件夹/文件夹/背景图片"

],

里面绝对路径前一定要加“file:///”,复制电脑绝对路径后目录斜杠“\”要全部修改成这样的“/”才会生效。

复制电脑绝对路径后目录斜杠是这样的“\”全部修改后斜杠是这样的“/”

参照或全部复制以下代码,即可看到你家女盆友或者男盆友哦!!!!

=============================================================================

{

"files.associations": {

// "*.cjson":"jsonc",

// "*.wxss":"css",

// "*.wxs":javascript,

// "*.ejs":"html",

// "*.js":"html",

// "*.vue":"html",

},

"editor.renderControlCharacters": true,

"workbench.colorTheme": "Visual Studio Dark",

"editor.tabSize": 2,

"emmet.triggerExpansionOnTab": true,

"explorer.confirmDelete": false,

"editor.renderWhitespace": "none",

"git.autofetch": true,

"git.enableSmartCommit": true,

"workbench.sideBar.location": "right",

"window.zoomLevel": -1,

"editor.fontSize": 16,

// 字体大小

"files.autoSave": "afterDelay",

"background.enabled": true,

"background.useDefault": false,

"background.customImages": [

//这里是你家女盆友或者男盆友照片的存放地址哦!!!

"file:///D:/Program Files/01_梦想之窗/Microsoft VS Code/background/beauty.jfif"

],

// 背景图片的绝对路径

"background.style": {

"content": "''",

"position": "absolute",

"width": "100%",

"height": "100%",

"background-position": "top 10px;",

"background-repeat": "no-repeat",

"background-size": "100%,100%",

"opacity": 0.4,

},

"editor.codeActionsOnSave": null,

"[markdown]": {},

"breadcrumbs.enabled": true,

"editor.wrappingIndent": "bounded",

"latex-workshop.view.pdf.backgroundColor": "#f40",

"background.loop": true,

"markdown-pdf.omitBackground": true,

"editor.wordWrap": "on",

"workbench.iconTheme": "simple-icons",

"editor.accessibilityPageSize": 8,

"terminal.integrated.scrollback": 100,

"liveServer.settings.donotShowInfoMsg": true,

"editor.formatOnSave": true,

"leetcode.endpoint": "leetcode-cn",

"leetcode.workspaceFolder": "C:\\Users\\laich\\.leetcode",

"leetcode.defaultLanguage": "javascript",

"[html]": {

"editor.defaultFormatter": "Wscats.qf"

},

"[jsonc]": {

"editor.defaultFormatter": "esbenp.prettier-vscode"

},

"[css]": {

"editor.defaultFormatter": "michelemelluso.code-beautifier"

}

"version": "0.1.0",

"configurations": [

{

"type": "browser-preview",

"request": "attach",

"name": "Browser Preview: Attach"

},

{

"type": "browser-preview",

"request": "launch",

"name": "Browser Preview: Launch",

"url": "http://localhost:3000"

}

]

}

=============================================================================

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。