1 files changed,
11 insertions(+),
14 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2025-05-05 14:44:29 +0300
Parent:
1eca757
M
lua/plugins/copilot.lua
@@ -58,23 +58,20 @@ },
}, }, { - "zbirenbaum/copilot-cmp", + "nvim-cmp", enabled = enabled, - config = true, dependencies = { "copilot.lua", - { - "nvim-cmp", - ---@module "cmp" - ---@param opts cmp.ConfigSchema - opts = function(_, opts) - table.insert(opts.sources, 1, { - name = "copilot", - group_index = 0, - max_item_count = 3, - }) - end, - }, + { "zbirenbaum/copilot-cmp", config = true }, }, + ---@module "cmp" + ---@param opts cmp.ConfigSchema + opts = function(_, opts) + table.insert(opts.sources, 1, { + name = "copilot", + group_index = 0, + max_item_count = 3, + }) + end, }, }