Enable Copilot suggestions and panel

This commit is contained in:
Ducky SSH User
2025-12-07 22:59:37 +00:00
parent 736a2699b9
commit abfadff35e

View File

@@ -7,6 +7,10 @@ return {
require('copilot').setup { require('copilot').setup {
suggestion = { enabled = false }, suggestion = { enabled = false },
panel = { enabled = false }, panel = { enabled = false },
filetypes = {
yaml = true,
['yaml.ansible'] = true,
},
} }
end, end,
}, },
@@ -21,8 +25,12 @@ return {
cmd = 'Copilot', cmd = 'Copilot',
config = function() config = function()
require('copilot').setup { require('copilot').setup {
suggestion = { enabled = false }, suggestion = { enabled = true },
panel = { enabled = false }, panel = { enabled = true },
filetypes = {
yaml = true,
['yaml.ansible'] = true,
},
} }
end, end,
}, },