From 6efb2da03e5c13f29613bcbbfcb5b22f24768f0d Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Wed, 27 Aug 2025 13:41:07 +0200 Subject: [PATCH] feat(nvim): change default chat model to Claude Sonnet 4 --- config/nvim/lua/plugins/copilot-chat.lua | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/config/nvim/lua/plugins/copilot-chat.lua b/config/nvim/lua/plugins/copilot-chat.lua index dac6927..fcea8c0 100644 --- a/config/nvim/lua/plugins/copilot-chat.lua +++ b/config/nvim/lua/plugins/copilot-chat.lua @@ -1,13 +1,15 @@ -- Chat with GitHub Copilot in Neovim -- https://github.com/CopilotC-Nvim/CopilotChat.nvim return { - { - "CopilotC-Nvim/CopilotChat.nvim", - branch = "canary", - dependencies = { - { "zbirenbaum/copilot.lua" }, -- or github/copilot.vim - { "nvim-lua/plenary.nvim" }, -- for curl, log wrapper - }, - opts = {}, - }, + { + "CopilotC-Nvim/CopilotChat.nvim", + branch = "canary", + dependencies = { + { "zbirenbaum/copilot.lua" }, -- or github/copilot.vim + { "nvim-lua/plenary.nvim" }, -- for curl, log wrapper + }, + opts = { + model = "claude-sonnet-4", + }, + }, }