Add plugins and customizations
This commit is contained in:
parent
5aeddfdd5d
commit
9d1bfea5a4
7 changed files with 82 additions and 4 deletions
18
lua/custom/plugins/neogit.lua
Normal file
18
lua/custom/plugins/neogit.lua
Normal 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,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue