kickstart.nvim/lua/custom/plugins/copilot-chat.lua

15 lines
363 B
Lua

return {
'CopilotC-Nvim/CopilotChat.nvim',
branch = 'canary',
dependencies = {
{ 'zbirenbaum/copilot.lua' }, -- or github/copilot.vim
{ 'nvim-lua/plenary.nvim' }, -- for curl, log wrapper
},
config = function()
require('CopilotChat').setup {
debug = true, -- Enable debugging
-- See Configuration section for rest
}
end,
}