vsCode設定ファイル、自動保存、カスタム背景画像

VScode の設定

{
    
    
  "workbench.iconTheme": "vscode-icons",
  "eslint.codeActionsOnSave.mode": "all",
  // 保存时自动格式化代码
  "editor.codeActionsOnSave": {
    
    
    "source.fixAll": true,
    "source.fixAll.eslint": true
  },
  "workbench.colorTheme": "Visual Studio Light",
  //background 的相关配置
  "update.enableWindowsBackgroundUpdates": true,
  "background.customImages": [
    "file:///D:/墙纸照片/墙纸/鬼刀公主 (2).jpg",
    "file:///D:/墙纸照片/墙纸/墙纸 (1).jpg",
    "file:///D:/墙纸照片/墙纸/墙纸 (9).jpg",
    "file:///D:/墙纸照片/墙纸/墙纸 (17).jpg" //图片地址
  ],
  "background.style": {
    
    
    "content": "''",
    "pointer-events": "none",
    "position": "absolute", //图片位置
    "width": "100%",
    "height": "100%",
    "z-index": "99999",
    "background.repeat": "no-repeat",
    //"background-size":"100%",//图片大小
    "opacity": 0, //透明度
    "-webkit-background-size": "cover",
    "-moz-background-size": "cover",
    "-o-background-size": "cover",
    "background-size": "cover"
  },
  "background.useFront": true,
  "background.useDefault": false,
  "backgroundCover.randomImageFolder": "d:\\墙纸照片\\墙纸",
  "backgroundCover.autoStatus": true,
  "backgroundCover.imagePath": "d:\\墙纸照片\\墙纸\\墙纸 (7).jpg",
  "backgroundCover.opacity": 0.5,
  "diffEditor.ignoreTrimWhitespace": false,
  "window.zoomLevel": 0,
  "javascript.format.insertSpaceAfterSemicolonInForStatements": false,
  "javascript.updateImportsOnFileMove.enabled": "always",
  "workbench.editorAssociations": []
}

おすすめ

転載: blog.csdn.net/yuanbo_520/article/details/108572513