dotfiles/nvim/lua/plugins/copilot.lua

18 lines
349 B
Lua
Raw Normal View History

2024-01-17 21:03:38 +01:00
return {
2024-01-31 12:25:28 +01:00
"zbirenbaum/copilot.lua",
cmd = "Copilot",
event = "InsertEnter",
opts = {
suggestion = {
auto_trigger = true,
auto_refresh = true,
keymap = {
accept = "<leader><Tab>",
},
},
filetypes = {
2024-01-17 21:26:45 +01:00
markdown = true,
2024-01-31 12:25:28 +01:00
}
}
2024-01-17 21:03:38 +01:00
}