.dotfiles/nvim/lua/plugs/neogit.lua
Martin Larsson f15bbc57e2 Merge main
2025-04-16 16:38:27 +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 }
},
}