mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-14 07:26:44 +00:00
22 lines
439 B
Lua
22 lines
439 B
Lua
return {
|
|
'zbirenbaum/copilot.lua',
|
|
cmd = 'Copilot',
|
|
event = 'InsertEnter',
|
|
opts = {
|
|
-- panel = {
|
|
-- auto_refresh = true,
|
|
-- },
|
|
filetypes = {
|
|
['*'] = true,
|
|
},
|
|
suggestion = {
|
|
auto_trigger = true,
|
|
keymap = {
|
|
accept = '<C-e>',
|
|
next = '<C-j>',
|
|
prev = '<C-k>',
|
|
}
|
|
}
|
|
}
|
|
}
|