// 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 `zed: Open Default Settings` command // from the command palette { "language_models": { "ollama": { "api_url": "http://localhost:11434" } }, "ui_font_size": 16, "buffer_font_size": 16, "theme": { "mode": "system", "light": "Catppuccin Latte", "dark": "Gruvbox Dark" }, "telemetry": { "diagnostics": false, "metrics": false }, "base_keymap": "VSCode", "format_on_save": "on", "autosave": "on_window_change", "vim_mode": false, "assistant": { "default_model": { "provider": "copilot_chat", "model": "gpt-4o" }, "version": "2", "provider": "copilot_chat" }, "lsp": { "rust-analyzer": { "initialization_options": { "check": { "command": "clippy" // rust-analyzer.check.command (default: "check") } } }, "eslint": { "settings": { "rulesCustomizations": [ // set all eslint errors/warnings to show as warnings { "rule": "*", "severity": "warn" } ] } } } }