vscode plug-ins and Configuration

Better Comments Set comments in different colors

veture // vue use

 

 

{
    "git.path":"C:\Program Files\Git\cmd\git.exe",   
    "git.ignoreMissingGitWarning": true,  
    "breadcrumbs.enabled": true,  
    "workbench.colorTheme": "One Dark Pro",  
    "editor.fontFamily": "mononoki,Consolas, 'Courier New', monospace",  
    "editor.renderLineHighlight": "none",  
    "editor.lineHeight": 18,  
    "editor.roundedSelection": false,  
    "editor.fontSize": 14,  
    "workbench.colorCustomizations": {  
        "Editor.selectionHighlightBorder": "# 8e7f8200", // border color selection  
        "Editor.selectionHighlightBackground": "# d8267f98", // select the background color of the content  
        "EditorIndentGuide.activeBackground": "# 81868d", // Editor active color reference line indent  
        "EditorBracketMatch.background": "# 515a6b94", // background color matching brackets  
        "Tab.activeBackground": "# 454b58", // background color of the current tab  
    },  
    "editor.tokenColorCustomizations": { //注释
        "comments": {
            // set the font style bold underline italic, etc.
            "fontStyle": "",
            // set the font color
            "foreground": "#4cd47a"
        } // comments
        // "keywords": "# 0a0", // keyword
        // "variables": "# f00", // variable name
        // "strings": "#e2d75dbd", // 字符串
        // "functions": "# fc5bbec9", // function name
        // "numbers": "#AE81FF" // 数字 
    },
 
}

Guess you like

Origin www.cnblogs.com/lucy-xyy/p/12077894.html