51 lines
1,012 B
JSON
51 lines
1,012 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 `zed: open default settings` from the
|
|
// command palette (cmd-shift-p / ctrl-shift-p)
|
|
{
|
|
"ui_font_size": 14,
|
|
"buffer_font_size": 13,
|
|
"buffer_font_family": "Iosevka",
|
|
"vim_mode": true,
|
|
"terminal": {
|
|
"shell": {
|
|
"program": "fish"
|
|
}
|
|
},
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "One Light",
|
|
"dark": "Gruvbox Dark Soft"
|
|
},
|
|
"lsp": {
|
|
"rust-analyzer": {
|
|
"initialization_options": {
|
|
"cargo": {
|
|
"features": "all"
|
|
},
|
|
"check": {
|
|
"command": "clippy"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
// Disable Telemetry
|
|
"telemetry": {
|
|
"diagnostics": false,
|
|
"metrics": false
|
|
},
|
|
|
|
// Disable AI crap
|
|
"agent": {
|
|
"button": false,
|
|
"version": "1"
|
|
},
|
|
"features": {
|
|
"edit_prediction_provider": "none"
|
|
}
|
|
}
|