Files
nvim/lua/plugins/copilot.lua

22 lines
512 B
Lua
Raw Normal View History

2025-04-13 22:53:08 +01:00
return {
2025-08-26 18:23:14 +01:00
'zbirenbaum/copilot.lua',
event = 'InsertEnter',
config = function()
require('copilot').setup {
suggestion = {
enabled = true,
auto_trigger = true,
keymap = {
accept = '<Tab>',
},
},
filetypes = {
yaml = true,
markdown = true,
gitcommit = true,
gitrebase = true,
},
}
end,
2025-04-13 22:53:08 +01:00
}