From 472b43c16edfb65d8ba497eac6c3919276dab5b0 Mon Sep 17 00:00:00 2001 From: ZaneFerns360 Date: Sat, 12 Oct 2024 11:42:21 +0530 Subject: [PATCH] neogit --- lua/custom/plugins/neogit.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lua/custom/plugins/neogit.lua diff --git a/lua/custom/plugins/neogit.lua b/lua/custom/plugins/neogit.lua new file mode 100644 index 00000000..d7251c6b --- /dev/null +++ b/lua/custom/plugins/neogit.lua @@ -0,0 +1,16 @@ +local neogit = { + { + 'NeogitOrg/neogit', + dependencies = { + 'nvim-lua/plenary.nvim', -- required + 'sindrets/diffview.nvim', -- optional - Diff integration + + -- Only one of these is needed. + 'nvim-telescope/telescope.nvim', -- optional + 'ibhagwan/fzf-lua', -- optional + 'echasnovski/mini.pick', -- optional + }, + config = true, + }, +} +return neogit