Add plugins and customizations

This commit is contained in:
gmcmillan82 2024-05-13 19:26:19 +02:00
parent 5aeddfdd5d
commit 9d1bfea5a4
7 changed files with 82 additions and 4 deletions

View file

@ -0,0 +1,18 @@
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
},
config = function()
require('neogit').setup {
kind = 'split',
integrations = { diffview = true },
}
end,
},
}