diff --git a/lua/custom/plugins/copilot-cmp.lua b/lua/custom/plugins/copilot-cmp.lua deleted file mode 100644 index 10e11c04..00000000 --- a/lua/custom/plugins/copilot-cmp.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - 'zbirenbaum/copilot-cmp', - config = function() - require('copilot_cmp').setup() - end, - opts = { - filetypes = { - ['.'] = false, - go = true, - }, - }, -} diff --git a/lua/custom/plugins/copilot-vim.lua b/lua/custom/plugins/copilot-vim.lua new file mode 100644 index 00000000..1a804873 --- /dev/null +++ b/lua/custom/plugins/copilot-vim.lua @@ -0,0 +1,3 @@ +return { + 'github/copilot.vim', +} diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua deleted file mode 100644 index aebe75b6..00000000 --- a/lua/custom/plugins/copilot.lua +++ /dev/null @@ -1,11 +0,0 @@ -return { - 'zbirenbaum/copilot.lua', - opts = { - suggestion = { enabled = false }, - panel = { enabled = false }, - filetypes = { - ['.'] = false, - go = true, - }, - }, -}