dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit fc56a7e3768ef355bd551030a2f35efdddf2b9d8
parent c58caef0f4906463c76e0345e0be56c8b29a5218
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed, 18 Mar 2026 21:51:06 +0900

zed: update settings

The latest update seems to really be pushing AI features :/

Diffstat:
M.config/zed/settings.json | 48+++++++++++++++++++++++++++++++++---------------
1 file changed, 33 insertions(+), 15 deletions(-)

diff --git a/.config/zed/settings.json b/.config/zed/settings.json @@ -7,40 +7,58 @@ // custom settings, run the `open default settings` command // from the command palette or from `Zed` application menu. { + // Theme. + "theme": "Ayu Mirage", + "ui_font_size": 15, + // Panels. + "project_panel": { + "dock": "left" + }, + "outline_panel": { + "dock": "left" + }, + "collaboration_panel": { + "dock": "left" + }, + "git_panel": { + "dock": "left" + }, + // AI/LLMs. "agent_servers": { "claude-acp": { - "type": "registry", - }, + "type": "registry" + } }, "edit_predictions": { - "provider": "zed", + "provider": "zed" }, "agent": { + "dock": "right", + "default_profile": "ask", "default_model": { - "effort": "high", - "enable_thinking": true, - "provider": "zed.dev", - "model": "claude-sonnet-4-6", - }, + "enable_thinking": false, + "provider": "anthropic", + "model": "claude-sonnet-4-6-latest" + } }, - "theme": "Ayu Mirage", - "ui_font_size": 15, + // Fonts. "buffer_font_family": "SF Mono", "buffer_font_size": 14, "buffer_font_features": { - "calt": false, + "calt": false }, + // Filetype handling. "file_types": { "C": ["c"], - "C++": ["cc", "cpp"], + "C++": ["cc", "cpp"] }, + // Editing. "tab_size": 2, "vim": { // "always": use system clipboard // "never": don't use system clipboard // "on_yank": use system clipboard for yank operations - "use_system_clipboard": "always", + "use_system_clipboard": "always" }, - // Whether to enable vim modes and key bindings - "vim_mode": true, + "vim_mode": true }