dotfiles/NixOS/modules/nvim/files/lua/plugins/copilot.lua

18 lines
349 B
Lua
Raw Normal View History

2024-05-31 18:00:12 +02:00
return {
"zbirenbaum/copilot.lua",
cmd = "Copilot",
event = "InsertEnter",
opts = {
suggestion = {
auto_trigger = true,
auto_refresh = true,
keymap = {
accept = "<leader><Tab>",
},
},
filetypes = {
markdown = true,
}
}
}