From 7fd0950446feb70633bdf7b90d362e5da1f28760 Mon Sep 17 00:00:00 2001 From: Steins7 Date: Tue, 18 Oct 2022 15:34:12 +0200 Subject: [PATCH] Add Git integration --- lua/plugins.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index 5fbf629..e2e4d42 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -18,8 +18,8 @@ local function manage_plugins() -- LSP servers ["https://github.com/simrat39/rust-tools.nvim.git"] = { - packadd_after = { ["https://github.com/neovim/nvim-lspconfig"] = true, - ["https://github.com/ms-jpq/coq_nvim"] = true}, + packadd_after = { ["https://github.com/neovim/nvim-lspconfig.git"] = true, + ["https://github.com/ms-jpq/coq_nvi.git"] = true}, packadd_hook = function() local rt = require("rust-tools") local coq = require("coq") @@ -38,6 +38,10 @@ local function manage_plugins() })) end }, + + -- Git integration + ["https://github.com/tpope/vim-fugitive.git"] = {}, + ["https://github.com/airblade/vim-gitgutter.git"] = {}, } local manager = require("plogins").manage(plugins)