31 lines
635 B
Lua
31 lines
635 B
Lua
return {
|
|
{
|
|
'zbirenbaum/copilot.lua',
|
|
cmd = 'Copilot',
|
|
event = 'InsertEnter',
|
|
config = function()
|
|
require('copilot').setup {
|
|
suggestion = { enabled = false },
|
|
panel = { enabled = false },
|
|
}
|
|
end,
|
|
},
|
|
{
|
|
'zbirenbaum/copilot-cmp',
|
|
event = 'InsertEnter',
|
|
config = function()
|
|
require('copilot_cmp').setup()
|
|
end,
|
|
dependencies = {
|
|
'zbirenbaum/copilot.lua',
|
|
cmd = 'Copilot',
|
|
config = function()
|
|
require('copilot').setup {
|
|
suggestion = { enabled = false },
|
|
panel = { enabled = false },
|
|
}
|
|
end,
|
|
},
|
|
},
|
|
}
|