나만의 VSCODE 셋팅

2023. 4. 20. 17:50Unknown

테마 : Dracula offical

글꼴 및 색상

 

파일명: settings.json

{
    "workbench.startupEditor": "none",
    "[python]": {
        "editor.formatOnType": true
    },
    "editor.accessibilityPageSize": 15,
    "editor.fontSize": 15,
    "liveServer.settings.donotShowInfoMsg": true,
    "editor.wordWrap": "on",
    "workbench.editor.enablePreview": false,
    "terminal.integrated.defaultProfile.linux": "",
    "terminal.integrated.automationProfile.windows": {},
    "workbench.colorTheme": "Material Theme Darker",
    "workbench.iconTheme": "eq-material-theme-icons-light",
    "launch": {

        "configurations": [],
        "compounds": []
    },
    "workbench.colorCustomizations": {
        "editor.selectionBackground": "#108190",
        "editor.foreground": "#108190"

    },
    "editor.tokenColorCustomizations": {
    "comments": "#ddaa00",
    "textMateRules": [
        {
            "scope": ["comment", "keyword.control"],
            "settings": { "fontStyle": "italic" }
        }
    ]
    }
   
}

 

728x90