From ad74d5e36bdd49d81a2d066dd063cb8728f058a9 Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Tue, 28 Nov 2023 22:25:52 +0100 Subject: [PATCH] removed github copilot related plugins --- nvim/lua/settings/lazy/plugins/nvimcmp.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nvim/lua/settings/lazy/plugins/nvimcmp.lua b/nvim/lua/settings/lazy/plugins/nvimcmp.lua index 13af0b4..c7c0c25 100644 --- a/nvim/lua/settings/lazy/plugins/nvimcmp.lua +++ b/nvim/lua/settings/lazy/plugins/nvimcmp.lua @@ -29,9 +29,9 @@ return { [""] = cmp.mapping.confirm({ select = true }), }), sources = cmp.config.sources({ - { name = "nvim_lsp" }, - { name = "luasnip" }, - { name = "path" }, + { name = "nvim_lsp", group_index = 2 }, + { name = "luasnip", group_index = 2 }, + { name = "path", group_index = 2 }, }, { { name = "buffer" }, }), @@ -40,7 +40,7 @@ return { -- Set configuration for specific filetype. cmp.setup.filetype("gitcommit", { sources = cmp.config.sources({ - { name = "git" }, -- You can specify the `git` source if [you were installed it](https://github.com/petertriho/cmp-git). + { name = "git" }, -- You can specify the `git` source if [you were installed it](https://github.com/petertriho/cmp-git). }, { { name = "buffer" }, }),