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

nvim: cowpilot

This commit is contained in:
Henrik Hautakoski 2024-04-04 22:57:49 +02:00
parent bba9169e4a
commit ca792c52f8
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,18 @@
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,
},
}
}