develog

[vscode] Explorer 폰트 변경 본문

카테고리 없음

[vscode] Explorer 폰트 변경

냐옴 2022. 3. 1. 19:16

 

Extension 설치
  • Customize UI
  • Monkey patch
user settings.json 수정
"customizeUI.listRowHeight": 22,
"customizeUI.stylesheet": {
    ".monaco-workbench .part > .content .folder-icon": "font-family: D2Coding; font-size: 14px !important; font-weight: bold;",
    ".monaco-workbench .part > .content .file-icon": "font-family: D2Coding; font-size: 14px !important;"
}

 

참고

https://www.reddit.com/r/vscode/comments/l72z6c/tip_how_to_change_the_explorersidebar_font/

 

Tip: How to change the explorer/sidebar font size/styling

Since there's no way to customize the explorer/tree view font style separately from the rest of the app, here is a way to override it: 1. Install...

www.reddit.com

 

Comments