From 959e9e5c5281891a22e8c98bc6662d217692e839 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 11 Apr 2024 22:43:22 +0100 Subject: [PATCH] Add kbenzie/cmp-git plugin This is a fork of https://github.com/petertriho/cmp-git with a revert of a bug fix that appears to have introduced a bug. --- lua/plugins/completions.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/plugins/completions.lua b/lua/plugins/completions.lua index 8d4b79b..5e0d56b 100644 --- a/lua/plugins/completions.lua +++ b/lua/plugins/completions.lua @@ -10,7 +10,7 @@ return { 'hrsh7th/cmp-nvim-lsp', -- Source for built-in language server client 'hrsh7th/cmp-buffer', -- Source for buffer words 'hrsh7th/cmp-path', -- Source for filesystem paths - 'hrsh7th/cmp-cmdline', -- Source for command-line + 'kbenzie/cmp-git', -- Source for Git/GitHub/GitLab 'hrsh7th/nvim-cmp', -- Completion engine combines and use the above -- LSP UI plugins @@ -118,7 +118,7 @@ return { { name = 'luasnip' }, { name = 'buffer' }, { name = 'path' }, - -- { name = 'cmdline' }, + { name = 'git' }, }, window = { @@ -126,6 +126,7 @@ return { documentation = cmp.config.window.bordered(), }, }) + require("cmp_git").setup({}) -- Customise LSP UI vim.lsp.handlers['textDocument/hover'] = vim.lsp.with(