From abfadff35e7d9a659ae3013186fcea18163012d6 Mon Sep 17 00:00:00 2001 From: Ducky SSH User Date: Sun, 7 Dec 2025 22:59:37 +0000 Subject: [PATCH] Enable Copilot suggestions and panel --- lua/custom/plugins/copilot.lua | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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, },