Neovim
Route Neovim AI plugin traffic through Axemere Gateway. The most popular Neovim AI plugins, including avante.nvim, codecompanion.nvim, and others, support custom base URLs.
Full guide coming soon. Most Neovim AI plugins read
ANTHROPIC_BASE_URLorOPENAI_BASE_URLfrom the environment, or accept anendpointoption in their Lua config. The VS Code guide shows the general pattern.
How to Route Neovim AI Plugins Through Axemere
avante.nvim. Set the endpoint in your Lua config:
require('avante').setup({ provider = 'claude', claude = { endpoint = 'https://us.gw.axemere.ai/proxy/anthropic/k/mvgc_k_your-key-here', api_key = 'unused', model = 'claude-sonnet-4-6', }, })
codecompanion.nvim. Set the URL adapter:
require('codecompanion').setup({ adapters = { anthropic = function() return require('codecompanion.adapters').extend('anthropic', { env = { url = 'https://us.gw.axemere.ai/proxy/anthropic/k/mvgc_k_your-key-here', api_key = 'unused', }, }) end, }, })
Alternatively, set ANTHROPIC_BASE_URL in your shell before launching Neovim; most plugins pick it up automatically.
Prerequisites
- A running Axemere gateway: Managed or Self-Hosted
- A gateway key from Console → Gateway Keys
Next Steps
- AI Tools Overview: all supported tools
- Proxy Path Attribution: add workload and project to your gateway URL
- Records: verify requests are flowing