Skip to content

Instantly share code, notes, and snippets.

@xgqfrms
Created June 10, 2026 07:02
Show Gist options
  • Select an option

  • Save xgqfrms/4e909d73ac11ace9d4117f5b34c2fb62 to your computer and use it in GitHub Desktop.

Select an option

Save xgqfrms/4e909d73ac11ace9d4117f5b34c2fb62 to your computer and use it in GitHub Desktop.
如何在 VSCode 中设置 Chat 字体大小

在 VSCode 中设置 Chat 字体大小,有几种方式:

方式 1:通过设置 UI

  1. 打开 VSCode 设置:Cmd+,(Mac)或 Ctrl+,(Windows/Linux)
  2. 搜索 chat font sizeeditor font size
  3. 修改 Chat: Font Size 的值

方式 2:直接编辑 settings.json

  1. 打开命令面板:Cmd+Shift+P
  2. 输入 Preferences: Open Settings (JSON)
  3. 添加或修改以下配置:
{
  "chat.fontSize": 14,
  "editor.fontSize": 14
}

方式 3:使用 Claude Code /config 命令 在 Claude Code 中输入:

/config

然后在设置中找到字体相关选项。

常用字体大小参考:

  • 12-13:较小
  • 14:标准(推荐)
  • 16-18:较大
  • 20+:很大

哪个方式适合你?或者需要帮助配置其他 VSCode 设置?

@xgqfrms

xgqfrms commented Jun 10, 2026

Copy link
Copy Markdown
Author

/Users/xgqfrms-mbp/Documents/GitHub/three.js-all-in-one/.vscode/settings.json

{
  "editor.fontSize": 14,  
  "chat.fontSize": 13,
  "editor.tabSize": 2,
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment