Visual Studio Code change font size for file explorer tray?

前端 未结 10 1788
青春惊慌失措
青春惊慌失措 2021-01-31 01:11

How do I change the font size for the file explorer in Visual Studio Code? There is not an option in the settings.json file.

10条回答
  •  北荒
    北荒 (楼主)
    2021-01-31 01:20

    Type CTRL+SHIFT+P inside your VSCODE window and type/select "Open Settings (JSON)"

    If you find the default font settings tiny (very much like I do), inside the curly brackets type:

    "editor.fontSize": 16,
    "terminal.integrated.fontSize": 14,
    "window.zoomLevel": 1.4,
    

    Try changing the sizes until it works for you

提交回复
热议问题