feat(nvim): change default chat model to Claude Sonnet 4

This commit is contained in:
Stefan Imhoff
2025-08-27 13:41:07 +02:00
parent 55905a6eb2
commit 6efb2da03e

View File

@@ -1,13 +1,15 @@
-- Chat with GitHub Copilot in Neovim -- Chat with GitHub Copilot in Neovim
-- https://github.com/CopilotC-Nvim/CopilotChat.nvim -- https://github.com/CopilotC-Nvim/CopilotChat.nvim
return { return {
{ {
"CopilotC-Nvim/CopilotChat.nvim", "CopilotC-Nvim/CopilotChat.nvim",
branch = "canary", branch = "canary",
dependencies = { dependencies = {
{ "zbirenbaum/copilot.lua" }, -- or github/copilot.vim { "zbirenbaum/copilot.lua" }, -- or github/copilot.vim
{ "nvim-lua/plenary.nvim" }, -- for curl, log wrapper { "nvim-lua/plenary.nvim" }, -- for curl, log wrapper
}, },
opts = {}, opts = {
}, model = "claude-sonnet-4",
},
},
} }