settings.json (1009B)
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 "features": { 11 "edit_prediction_provider": "zed" 12 }, 13 "agent": { 14 "default_model": { 15 "provider": "zed.dev", 16 "model": "claude-3-5-sonnet-latest" 17 } 18 }, 19 "theme": "Ayu Mirage", 20 "ui_font_size": 15, 21 "buffer_font_family": "SF Mono", 22 "buffer_font_size": 14, 23 "buffer_font_features": { 24 "calt": false 25 }, 26 "file_types": { 27 "C": ["c", "m"], 28 "C++": ["cc", "cpp", "mm"] 29 }, 30 "tab_size": 2, 31 "vim": { 32 // "always": use system clipboard 33 // "never": don't use system clipboard 34 // "on_yank": use system clipboard for yank operations 35 "use_system_clipboard": "always" 36 }, 37 // Whether to enable vim modes and key bindings 38 "vim_mode": true 39 }