Divide and Conquer
[환경세팅] vscode tree todo setting 본문
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
반응형
'성장캐 > 기타' 카테고리의 다른 글
[Python] from pytube import Playlist로 유튜브 영상 정보 확인 (0) | 2023.04.28 |
---|---|
[에러해결] pytube에서 KeyError: 'streamingData' (0) | 2023.04.28 |
[환경세팅] Tensorflow Tutorial (0) | 2023.04.04 |
[에러해결] reloaded modules Error (0) | 2023.03.22 |
[에러해결] sudo vi /etc/apt/sources.list (0) | 2022.10.01 |
Comments