18 lines
255 B
Lua
18 lines
255 B
Lua
return {
|
|
"TimUntersberger/neogit",
|
|
dependencies = {
|
|
"sindrets/diffview.nvim",
|
|
},
|
|
config = function()
|
|
local neogit = require("neogit")
|
|
|
|
neogit.setup({
|
|
integrations = {
|
|
diffview = true,
|
|
},
|
|
})
|
|
end,
|
|
lazy = true,
|
|
cmd = { "Neogit" },
|
|
}
|