dotfiles

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

settings.json (1124B)


      1 // Zed settings
      2 //
      3 // For information on how to configure Zed, see the Zed
      4 // documentation: https://zed.dev/docs/configuring-zed
      5 //
      6 // To see all of Zed's default settings without changing your
      7 // custom settings, run the `open default settings` command
      8 // from the command palette or from `Zed` application menu.
      9 {
     10   "agent_servers": {
     11     "claude-acp": {
     12       "type": "registry",
     13     },
     14   },
     15   "edit_predictions": {
     16     "provider": "zed",
     17   },
     18   "agent": {
     19     "default_model": {
     20       "effort": "high",
     21       "enable_thinking": true,
     22       "provider": "zed.dev",
     23       "model": "claude-sonnet-4-6",
     24     },
     25   },
     26   "theme": "Ayu Mirage",
     27   "ui_font_size": 15,
     28   "buffer_font_family": "SF Mono",
     29   "buffer_font_size": 14,
     30   "buffer_font_features": {
     31     "calt": false,
     32   },
     33   "file_types": {
     34     "C": ["c"],
     35     "C++": ["cc", "cpp"],
     36   },
     37   "tab_size": 2,
     38   "vim": {
     39     // "always": use system clipboard
     40     // "never": don't use system clipboard
     41     // "on_yank": use system clipboard for yank operations
     42     "use_system_clipboard": "always",
     43   },
     44   // Whether to enable vim modes and key bindings
     45   "vim_mode": true,
     46 }