To integrate Zed with Axon, configure the following settings in Zed’s Provider Selection and ~/.config/zed/settings.json file:
Setup MatterAI Provider in ~/.config/zed/settings.json:
~/.config/zed/settings.json
Copy
// 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){ "agent": { "default_model": { "provider": "MatterAI", "model": "axon-code" } }, "language_models": { "openai_compatible": { "MatterAI": { "api_url": "https://api.matterai.so/v1", "available_models": [ { "name": "axon-code", "display_name": "axon-code", "max_tokens": 200000, "max_output_tokens": 32000, "max_completion_tokens": 32000 } ] } } }, "telemetry": { // as is }, "theme": { // as is } //. //. //. // rest of your Zed configs}