return { { "ddzero2c/aider.nvim", config = function() require("aider").setup({ command = 'aider', -- Path to aider command model = 'ollama_chat/qwen2.5', -- AI model to use mode = 'diff', -- Edit mode: 'diff' or 'inline' -- Floating window options float_opts = { relative = 'editor', width = 0.8, -- 80% of editor width height = 0.8, -- 80% of editor height style = 'minimal', border = 'rounded', title = ' Aider ', title_pos = 'center', }, }) vim.keymap.set({ 'v', 'n' }, 'ga', ':AiderEdit', { noremap = true, silent = true }) end } }