Font 변경
VSCode 기반이기 때문에
다음 경로에서 파일 설정 변경
C:\Users\<Your_Username>\AppData\Roaming\Code\{USER_NAME}\settings.json
{USER_NAME} 을 Windows 사용자명으로 변경
settings.json 설정
editor.fontFamily, editor.fontSize 를 조정한다.
{
"workbench.colorTheme": "Default Dark Modern",
"security.workspace.trust.untrustedFiles": "open",
"workbench.editor.empty.hint": "hidden",
"editor":{
"fontFamily": "AppleSDGohticNeoM00", // font-family
"fontSize": 15 // font size
},
"git.openRepositoryInParentFolders": "never",
"[log]": {},
"workbench.settings.applyToAllProfiles": [
"editor.largeFileOptimizations"
]
}
'기타 > 잡동사니' 카테고리의 다른 글
Yaml 파일 쓰기 - 고급 (0) | 2024.11.11 |
---|---|
Semantic Versioning (0) | 2024.09.20 |
Windows WSL aws-cli (0) | 2024.03.19 |
[Obsidian] Table of contents 깔끔한 설정 방법 (0) | 2024.02.11 |
[Intellij IDEA] DB datetime 기본 출력 포맷 변경 (0) | 2023.07.28 |