1. 程式人生 > 其它 >vs code 背景色設定

vs code 背景色設定

{
    "workbench.colorTheme": "Visual Studio Light",
    "editor.tabSize": 2, //工作臺主題顏色
    "typescript.updateImportsOnFileMove.enabled": "always",
    // "editor.formatOnSave": true, // 儲存時格式化
    "breadcrumbs.enabled": false, // 開啟 vscode 檔案路徑導航
    // "tslint.autoFixOnSave": true, // #每次儲存的時候將程式碼按tslint格式進行修復
"eslint.autoFixOnSave": true, // #每次儲存的時候將程式碼按eslint格式進行修復 // "prettier.semi": false,//prettier 設定語句末尾不加分號 "prettier.singleQuote": true, // prettier 設定強制單引號 "vetur.format.defaultFormatter.js": "vscode-typescript", // #讓vue中的js按編輯器自帶的ts格式進行格式化 "window.enableMenuBarMnemonics": false, "
liveServer.settings.donotShowInfoMsg": true, // "workbench.colorTheme": "Winter is Coming (Light)", //視窗.不啟用選單欄輸入法,修改主題配色 "workbench.colorCustomizations": { // 顏色設定 // "foreground": "#75a478", "editor.background": "#C7EDCC", // "editor.background": "#c1d8ac", "sideBar.background
": "#FAF9DE", "terminal.background": "#EAEAEF" }, "files.autoGuessEncoding": true, "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "extensions.ignoreRecommendations": true, "window.zoomLevel": 0, "[html]": { "editor.defaultFormatter": "HookyQR.beautify" }, "editor.codeActionsOnSave": null, "files.associations": { "*.cjson": "jsonc", "*.wxss": "css", "*.wxs": "javascript", "*.wxp": "vue" }, "emmet.includeLanguages": { "wxml": "html" }, "minapp-vscode.disableAutoConfig": true, "editor.fontSize": 17 }