feat: personnal

This commit is contained in:
mescatj 2025-06-06 20:16:25 +02:00
parent 3338d39206
commit b985701aa0
3 changed files with 50 additions and 3 deletions

View file

@ -0,0 +1,25 @@
return {
{
"zbirenbaum/copilot.lua",
cmd = "Copilot",
event = "InsertEnter",
config = function()
require("copilot").setup({
suggestion = {
enabled = true,
auto_trigger = true,
hide_during_completion = false,
debounce = 25,
keymap = {
accept = "<Tab>",
accept_word = false,
accept_line = false,
next = false,
prev = false,
dismiss = "<Esc>",
},
},
})
end,
},
}