.dotfiles/nvim/lua/plugs/neogit.lua
2025-04-16 22:58:50 +02:00

21 lines
448 B
Lua

return {
"NeogitOrg/neogit",
dependencies = {
{
"sindrets/diffview.nvim",
opts = {
view = {
merge_tool = {
layout = "diff1_plain",
},
},
},
}
},
event = "VeryLazy",
lazy = true,
opts = {},
keys = {
{ "<leader>g", function() require("neogit").open() end }
},
}