Files
dotfiles/home/.config/zed/settings.json
T

54 lines
1.2 KiB
JSON

// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"agent": {
"default_model": {
"provider": "copilot_chat",
"model": "gpt-4o"
},
},
"features": {
"edit_prediction_provider": "none"
},
"theme": {
"mode": "dark",
"dark": "One Dark Pro",
"light": "One Light"
},
"ui_font_size": 18,
"ui_font_family": "Open Sans",
"buffer_font_size": 18.0,
"buffer_font_family": "Roboto Mono",
"buffer_font_weight": 400,
"vim_mode": false,
"preferred_line_length": 80,
"tab_size": 4,
"soft_wrap": "none",
"format_on_save": "off",
"confirm_quit": true,
"tabs": {
"git_status": true
},
"toolbar": {
"quick_actions": false
},
"git": {
"inline_blame": {
"enabled": false,
"delay_ms": 500
}
},
"telemetry": {
"diagnostics": false,
"metrics": false
}
}