dotfiles/.config/nvim/lua/plugins/extras/ai/copilot.lua
Sergio Laín e457722492
📁 files(nvim): changes to the directories and extras
another bug change to the structure of the nvim config. probably, tomorrow will be finished
2023-10-25 12:38:42 +02:00

23 lines
439 B
Lua

return {
"zbirenbaum/copilot.lua",
enabled = false,
opts = {
suggestion = {
enabled = true,
auto_trigger = true,
keymap = {
accept = "<M-CR>",
accept_line = "<M-l>",
accept_word = "<M-k>",
next = "<M-]>",
prev = "<M-[>",
dismiss = "<M-c>",
},
},
panel = { enabled = false },
filetypes = {
markdown = true,
help = true,
},
},
}