che-astronvim-config/lua/plugins/avante-nvim.lua
User 306fa774af refactor: consolidate Mason configuration with dynamic framework support
- Replace separate python.lua and vue.lua configs with unified init.lua
- Add dynamic tool installation based on FRAMEWORK environment variable
- Update avante.nvim plugin version from 0.0.23 to 0.0.27
- Remove obsolete mason/.gitignore file
2025-10-10 18:16:38 +00:00

30 lines
791 B
Lua

if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
---@type LazySpec
return {
{ -- further customize the options set by the community
"yetone/avante.nvim",
version = "0.0.27",
---@type avante.Config
opts = {
provider = "deepseek",
auto_suggestions_provider = "deepseek",
-- mode = "legacy",
-- behaviour = {
-- auto_apply_diff_after_generation = false,
-- auto_focus_on_diff_view = true,
-- },
providers = {
deepseek = {
__inherited_from = "openai",
api_key_name = "DEEPSEEK_API_KEY",
endpoint = "https://api.deepseek.com",
model = "deepseek-coder",
max_tokens = 8192,
-- disable_tools = true,
},
},
},
},
}