diff --git a/dot_config/zed/private_settings.json b/dot_config/zed/private_settings.json new file mode 100644 index 0000000..bff5ea3 --- /dev/null +++ b/dot_config/zed/private_settings.json @@ -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" + } +}