From 3e40a00cd3a10e13cdf1684c99146ba7426e260b Mon Sep 17 00:00:00 2001 From: servostar Date: Tue, 21 May 2024 23:35:59 +0200 Subject: [PATCH] added neogit --- lua/plugins/neogit.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lua/plugins/neogit.lua diff --git a/lua/plugins/neogit.lua b/lua/plugins/neogit.lua new file mode 100644 index 0000000..51d22c9 --- /dev/null +++ b/lua/plugins/neogit.lua @@ -0,0 +1,15 @@ +return { + { + "NeogitOrg/neogit", + dependencies = { + "nvim-lua/plenary.nvim", -- required + "sindrets/diffview.nvim", -- optional - Diff integration + + -- Only one of these is needed, not both. + "nvim-telescope/telescope.nvim", -- optional + "ibhagwan/fzf-lua", -- optional + }, + config = true + } + +}