Files
dotfiles/config/nvim/lua/plugins/copilot-chat.lua
2025-08-27 13:41:07 +02:00

16 lines
351 B
Lua

-- 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 = {
model = "claude-sonnet-4",
},
},
}