Files
nvim/lua/plugins/copilot.lua
Thomas Ruoff c190f92ee7 add copilot
2024-09-20 07:54:46 +02:00

18 lines
302 B
Lua

return {
{
'zbirenbaum/copilot.lua',
cmd = 'Copilot',
event = 'InsertEnter',
opts = {
suggestion = { enabled = false },
panel = { enabled = false },
},
},
{
'zbirenbaum/copilot-cmp',
config = function()
require('copilot_cmp').setup()
end,
},
}