From 5c08ce032e1018272f32e161d925d8423c424eb6 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 21 Oct 2025 09:50:49 +0100 Subject: [PATCH] Rename files --- lua/plugins/{minuet.lua => ai-completion.lua} | 21 +++++++++++++++++++ lua/plugins/copilot.lua | 1 - 2 files changed, 21 insertions(+), 1 deletion(-) rename lua/plugins/{minuet.lua => ai-completion.lua} (75%) diff --git a/lua/plugins/minuet.lua b/lua/plugins/ai-completion.lua similarity index 75% rename from lua/plugins/minuet.lua rename to lua/plugins/ai-completion.lua index 5bbe432..1c6735f 100644 --- a/lua/plugins/minuet.lua +++ b/lua/plugins/ai-completion.lua @@ -1,4 +1,25 @@ -- AI code completion +-- return { +-- 'zbirenbaum/copilot.lua', +-- event = 'InsertEnter', +-- config = function() +-- require('copilot').setup { +-- suggestion = { +-- enabled = true, +-- auto_trigger = true, +-- keymap = { +-- accept = '', +-- }, +-- }, +-- filetypes = { +-- yaml = true, +-- markdown = true, +-- gitcommit = true, +-- gitrebase = true, +-- }, +-- } +-- end, +-- } return { 'milanglacier/minuet-ai.nvim', dependencies = { 'nvim-lua/plenary.nvim' }, diff --git a/lua/plugins/copilot.lua b/lua/plugins/copilot.lua index 83b2a93..458ece7 100644 --- a/lua/plugins/copilot.lua +++ b/lua/plugins/copilot.lua @@ -1,4 +1,3 @@ -return {} -- return { -- 'zbirenbaum/copilot.lua', -- event = 'InsertEnter',