mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 14:37:15 +01:00
18 lines
302 B
Lua
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,
|
|
},
|
|
}
|