Divide and Conquer

[환경세팅] vscode tree todo setting 본문

성장캐/기타

[환경세팅] vscode tree todo setting

10살 2023. 4. 20. 23:02
728x90

settings.json을 열어서 아래 내용을 추가함

    "todo-tree.highlights.defaultHighlight": {
        "gutterIcon": true
    },
    "todo-tree.general.tags": [
        "TODO",
        "TEST",
        "NOTE"
    ],
    "todo-tree.highlights.customHighlight": {
        "TODO": {
            "icon": "alert",
            "iconColour": "red",
            "type": "line",
            "foreground": "red",
            "background": "white",
        },
        "TEST": {
            "icon": "beaker",
            "iconColour": "yellow",
            "type": "text",
            "foreground": "YELLOW",
        },
        "NOTE": {
            "icon": "check",
            "type": "tag",
            "foreground": "#36f446",
            "iconColour": "#36f446",
        },
    },
}

전체는 이렇게 구성

{
    "workbench.colorCustomizations": {},
    "editor.minimap.enabled": false,
    "security.workspace.trust.untrustedFiles": "open",
    "python.createEnvironment.trigger": "off",
    "git.openRepositoryInParentFolders": "never",
    "explorer.confirmDelete": false,
    "files.exclude": {
        "**/__pycache__": true,
        "**/.vscode": true,
        "**/*.pyc": true,
        "**/include": true,
        "**/resource": true,
        "**/setup.cfg": true,
        "**/test": true
    },
    "workbench.startupEditor": "none",
    "workbench.tree.indent": 20,
    "workbench.settings.applyToAllProfiles": [

        "workbench.tree.indent"
    ],
    "cmake.showOptionsMovedNotification": false,
    "jupyter.askForKernelRestart": false,


    "todo-tree.highlights.defaultHighlight": {
        "gutterIcon": true
    },
    "todo-tree.general.tags": [
        "TODO",
        "TEST",
        "NOTE"
    ],
    "todo-tree.highlights.customHighlight": {
        "TODO": {
            "icon": "alert",
            "iconColour": "red",
            "type": "line",
            "foreground": "red",
            "background": "white",
        },
        "TEST": {
            "icon": "beaker",
            "iconColour": "yellow",
            "type": "text",
            "foreground": "YELLOW",
        },
        "NOTE": {
            "icon": "check",
            "type": "tag",
            "foreground": "#36f446",
            "iconColour": "#36f446",
        },
    },
}

아이콘은 아래 사이트에 있는 걸로 바꿀 수 있다

 

Octicons | Primer

A scalable set of icons handcrafted by GitHub.

primer.style

 

반응형
Comments