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