local M = {} M.install = { src = "https://github.com/sindrets/diffview.nvim" } M.setup = function() require("diffview").setup({ enhanced_diff_hl = true, view = { merge_tool = { layout = "diff3_mixed", -- or "diff3_horizontal" }, }, }) end return M