Files
dots/.config/nvim/lua/plugins/neogit.lua
2024-04-20 20:40:22 +03:00

17 lines
234 B
Lua

return {
"TimUntersberger/neogit",
dependencies = {
"sindrets/diffview.nvim",
},
config = function()
local neogit = require("neogit")
neogit.setup({
integrations = {
diffview = true,
},
})
end,
lazy = true,
}