1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 11:24:55 +02:00
dotfiles/nvim-old/lua/plugins/ide/copilot.lua

18 lines
260 B
Lua

return {
"zbirenbaum/copilot.lua",
cmd = "Copilot",
event = "InsertEnter",
opts = {
suggestion = {
enabled = true,
auto_trigger = true,
keymap = {
accept = "<C-F>",
},
},
panel = {
enabled = true,
auto_refresh = true,
},
}
}