Change merge tools view to one window in diffview

This commit is contained in:
Martin Larsson 2025-02-20 00:37:37 +00:00
parent c9d7fc0b13
commit e14ad3ddcc

View file

@ -1,11 +1,18 @@
return { return {
"NeogitOrg/neogit", "NeogitOrg/neogit",
dependencies = { dependencies = {
"sindrets/diffview.nvim", {
"sindrets/diffview.nvim",
opts = {
view = {
merge_tool = {
layout = "diff1_plain",
},
},
},
}
}, },
event = "VeryLazy", event = "VeryLazy",
lazy = true, lazy = true,
config = function() opts = {},
require("neogit").setup()
end
} }