diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua index ee0a158..716de31 100644 --- a/lua/custom/plugins/copilot.lua +++ b/lua/custom/plugins/copilot.lua @@ -7,6 +7,10 @@ return { require('copilot').setup { suggestion = { enabled = false }, panel = { enabled = false }, + filetypes = { + yaml = true, + ['yaml.ansible'] = true, + }, } end, }, @@ -21,8 +25,12 @@ return { cmd = 'Copilot', config = function() require('copilot').setup { - suggestion = { enabled = false }, - panel = { enabled = false }, + suggestion = { enabled = true }, + panel = { enabled = true }, + filetypes = { + yaml = true, + ['yaml.ansible'] = true, + }, } end, },