dotfiles

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

commit 05c88c6886de6294541aa36cc86afbb8d6f3138f
parent 628dcae5a9ec10c843b45d7fc46aa3382b1476f7
Author: Chris Bracken <chris@bracken.jp>
Date:   Sat,  7 Mar 2026 11:50:56 +0900

zed: update settings format

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

diff --git a/.config/zed/settings.json b/.config/zed/settings.json @@ -7,21 +7,21 @@ // custom settings, run the `open default settings` command // from the command palette or from `Zed` application menu. { - "features": { - "edit_prediction_provider": "zed" + "edit_predictions": { + "provider": "zed" }, "agent": { "default_model": { "provider": "zed.dev", - "model": "claude-3-5-sonnet-latest" - } + "model": "claude-3-5-sonnet-latest", + }, }, "theme": "Ayu Mirage", "ui_font_size": 15, "buffer_font_family": "SF Mono", "buffer_font_size": 14, "buffer_font_features": { - "calt": false + "calt": false, }, "file_types": { "C": ["c", "m"], @@ -32,8 +32,8 @@ // "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, }