check in zed settings
This commit is contained in:
parent
b9290096f0
commit
537a3eb6a1
1 changed files with 46 additions and 0 deletions
46
dot_config/zed/private_settings.json
Normal file
46
dot_config/zed/private_settings.json
Normal file
|
@ -0,0 +1,46 @@
|
|||
// 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,
|
||||
"theme": {
|
||||
"mode": "system",
|
||||
"light": "One Light",
|
||||
"dark": "Gruvbox Light 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"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue