60 lines
1.2 KiB
JSON
60 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 `zed: open default settings` from the
|
|
// command palette (cmd-shift-p / ctrl-shift-p)
|
|
{
|
|
"edit_predictions": {
|
|
"mode": "subtle",
|
|
"copilot": {
|
|
"proxy": null,
|
|
"proxy_no_verify": null
|
|
},
|
|
"enabled_in_text_threads": false
|
|
},
|
|
"telemetry": {
|
|
"diagnostics": false,
|
|
"metrics": false
|
|
},
|
|
"base_keymap": "VSCode",
|
|
"ui_font_size": 16,
|
|
"buffer_font_size": 16,
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "One Light",
|
|
"dark": "One Dark"
|
|
},
|
|
"buffer_font_family": "CaskaydiaCove Nerd Font",
|
|
"toolbar": {
|
|
"breadcrumbs": false,
|
|
"quick_actions": false
|
|
},
|
|
"terminal": {
|
|
"toolbar": {
|
|
"breadcrumbs": false
|
|
}
|
|
},
|
|
"format_on_save": "off",
|
|
// "preferred_line_length": 80,
|
|
"soft_wrap": "editor_width",
|
|
"git": {
|
|
"inline_blame": {
|
|
"enabled": false
|
|
}
|
|
},
|
|
"collaboration_panel": {
|
|
"button": false
|
|
},
|
|
"assistant": {
|
|
"enabled": false,
|
|
"version": "2"
|
|
},
|
|
"features": {
|
|
"copilot": false,
|
|
"inline_completion_provider": "none"
|
|
}
|
|
}
|