diff --git a/lua/custom/plugins/copilot-cmp.lua b/lua/custom/plugins/copilot-cmp.lua index 6b549a09..a0074a92 100644 --- a/lua/custom/plugins/copilot-cmp.lua +++ b/lua/custom/plugins/copilot-cmp.lua @@ -1,20 +1,12 @@ -if true then - return {} -else - return { - 'zbirenbaum/copilot-cmp', - config = function() - require('copilot_cmp').setup() - end, - opts = { - filetypes = { - ['.'] = false, - go = true, - }, - }, - } -end - return { - 'https://github.com/mbbill/undotree', -} + 'zbirenbaum/copilot-cmp', + config = function() + require('copilot_cmp').setup() + end, + opts = { + filetypes = { + ['.'] = false, + go = true, + }, + }, + diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua index f86a00aa..aebe75b6 100644 --- a/lua/custom/plugins/copilot.lua +++ b/lua/custom/plugins/copilot.lua @@ -1,15 +1,11 @@ -if true then - return {} -else - return { - 'zbirenbaum/copilot.lua', - opts = { - suggestion = { enabled = false }, - panel = { enabled = false }, - filetypes = { - ['.'] = false, - go = true, - }, +return { + 'zbirenbaum/copilot.lua', + opts = { + suggestion = { enabled = false }, + panel = { enabled = false }, + filetypes = { + ['.'] = false, + go = true, }, - } -end + }, +}