mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-24 22:28:36 +02:00
25 lines
728 B
Lua
25 lines
728 B
Lua
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,
|
|
},
|
|
}
|