mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-27 09:45:22 +00:00
18 lines
358 B
Lua
18 lines
358 B
Lua
-- CoPilot
|
|
-- https://github.com/zbirenbaum/copilot.lua
|
|
return {
|
|
'zbirenbaum/copilot.lua',
|
|
cmd = 'Copilot',
|
|
build = ':Copilot setup',
|
|
event = { 'InsertEnter', 'LspAttach' },
|
|
fix_pairs = true,
|
|
opts = {
|
|
suggestion = { enabled = false },
|
|
panel = { enabled = false },
|
|
filetypes = {
|
|
markdown = true,
|
|
help = true,
|
|
},
|
|
},
|
|
}
|