17 lines
229 B
Lua
17 lines
229 B
Lua
local status, copilot = pcall(require, "copilot")
|
|
if not status then
|
|
return
|
|
end
|
|
|
|
copilot.setup({
|
|
suggestion = {
|
|
enabled = false,
|
|
},
|
|
panel = {
|
|
enabled = false,
|
|
},
|
|
filetypes = {
|
|
yaml = false,
|
|
markdown = false,
|
|
},
|
|
})
|