Files
dots/.config/nvim/lua/plugins/neogit.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" },
}