From c556d64167828cf0fd3f4a48e82e40d88f3a8862 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sat, 8 Jun 2024 12:38:05 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=EF=B8=8F=20remove(nvim):=20cmp-git?= =?UTF-8?q?=20extra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit merged inside lazyvim --- .../nvim/lua/plugins/extras/coding/cmp/git.lua | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .config/nvim/lua/plugins/extras/coding/cmp/git.lua diff --git a/.config/nvim/lua/plugins/extras/coding/cmp/git.lua b/.config/nvim/lua/plugins/extras/coding/cmp/git.lua deleted file mode 100644 index 87d98ecf..00000000 --- a/.config/nvim/lua/plugins/extras/coding/cmp/git.lua +++ /dev/null @@ -1,18 +0,0 @@ -local cmp = require("cmp") - -return { - "hrsh7th/nvim-cmp", - dependencies = { - "petertriho/cmp-git", - opts = {}, - }, - opts = function(_, opts) - 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 = "buffer" }, - }), - }) - end, -}