nvim-config/lua/custom/plugins/copilot.lua
2024-09-15 11:21:15 -04:00

19 lines
339 B
Lua
Executable file

return {
'zbirenbaum/copilot.lua',
cmd = 'Copilot',
event = 'InsertEnter',
opts = {
suggestion = {
auto_trigger = true,
filetypes = {
['.'] = true,
},
keymap = {
accept_word = '<M-k>',
accept_line = '<M-j>',
next = 'M-[',
previous = 'M-]',
},
},
},
}