나만의 VSCODE 셋팅
2023. 4. 20. 17:50ㆍUnknown
테마 : 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
'Unknown' 카테고리의 다른 글
아스키코드,16진수 변환 사이트 ! (0) | 2023.04.24 |
---|---|
NodeJS - EJS 버그? 왜 에러 뜨냐고 (오류:require is not defined in ES module scope, you can use import instead) (0) | 2023.04.21 |
Javascript 혼자 공부 1 (0) | 2023.04.19 |
VSCODE안에서 CMD로 NODEjs 실행하기 (0) | 2023.04.18 |
파이썬 코드 실행 확인 URL (0) | 2023.04.12 |