37 lines
829 B
JSON
37 lines
829 B
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.
|
|
{
|
|
"project_panel": {
|
|
"dock": "right"
|
|
},
|
|
"ui_font_size": 18,
|
|
"buffer_font_size": 16,
|
|
"features": {
|
|
"copilot": false
|
|
},
|
|
"vim_mode": true,
|
|
"confirm_quit": true,
|
|
"show_copilot_suggestions": false,
|
|
"dock": "right",
|
|
"assistant": {
|
|
"button": false
|
|
},
|
|
"tabs": {
|
|
"git_status": true
|
|
},
|
|
// WATCH OUT FOR THIS!!!!!
|
|
"remove_trailing_whitespace_on_save": true,
|
|
"preferred_line_length": 120,
|
|
"tab_size": 2,
|
|
"telemetry": {
|
|
"diagnostics": false,
|
|
"metrics": false
|
|
}
|
|
}
|