zoukankan      html  css  js  c++  java
  • VScode 舒服窗口样式设置

    Settings.json

    {
        "files.autoSave": "afterDelay",
        "window.zoomLevel": 0,
        "[json]": {
            "editor.defaultFormatter": "vscode.json-language-features"
        },
        "[html]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "workbench.editorAssociations": [
            {
                "viewType": "jupyter.notebook.ipynb",
                "filenamePattern": "*.ipynb"
            }
        ],
        "background.customImages": [
            "file:///C:/Users/lenovo/Documents/编码背景图.png","file:///C:/Users/lenovo/Documents/编码背景图.png","file:///C:/Users/lenovo/Documents/编码背景图.png"
        ],
        "background.styles": [
            {
                "content":"''",
                "pointer-events":"none",
                "position":"absolute",
                "width":"100%",
                "height":"100%",
                "z-index":"99999",
                "background.repeat":"no-repeat",
                "background-size":"7%,7%",
                "opacity":1
            },
            {
                "content":"''",
                "pointer-events":"none",
                "position":"absolute",
                "width":"100%",
                "height":"100%",
                "z-index":"99999",
                "background.repeat":"no-repeat",
                "background-size":"7%,7%",
                "opacity":1
            },
            {
                "content":"''",
                "pointer-events":"none",
                "position":"absolute",
                "width":"100%",
                "height":"100%",
                "z-index":"99999",
                "background.repeat":"no-repeat",
                "background-size":"7%,7%",
                "opacity":1
            },
        
        ],
        "background.useFront": true,
        "background.useDefault": false,
        "workbench.iconTheme": "eq-material-theme-icons-palenight",
        "[vue]": {
            "editor.defaultFormatter": "octref.vetur"
        },
        "editor.fontSize": 14, //窗口字号显示
        "editor.minimap.enabled": false,
        
        "workbench.colorCustomizations": {
            "editor.selectionHighlightBackground": "#d4d4d463"
        },
        "files.associations": {
            "*.vue":"html"
        },
    
    }

     

     

    加油,愿被这世界温柔以待 ^_^
  • 相关阅读:
    vue学习(五) 访问vue内部元素或者方法
    vue学习(四) v-on:事件绑定
    vue学习(三) v-bind指令
    vue学习(二) 三个指令v-cloak v-text v-html
    vue学习(一)初步了解 vue实例
    Restful 接口开发 完整版
    解决exlipse下 springboot 错误:找不到或无法加载主类
    一张图看懂 SQL 的各种 join 用法
    Rest分页接口开发
    浅谈rest風格的接口开发
  • 原文地址:https://www.cnblogs.com/liruilong/p/14742819.html
Copyright © 2011-2022 走看看