diff --git a/nvim/lua/plugs/neogit.lua b/nvim/lua/plugs/neogit.lua index 04595f1..8707296 100644 --- a/nvim/lua/plugs/neogit.lua +++ b/nvim/lua/plugs/neogit.lua @@ -1,11 +1,18 @@ return { "NeogitOrg/neogit", dependencies = { - "sindrets/diffview.nvim", + { + "sindrets/diffview.nvim", + opts = { + view = { + merge_tool = { + layout = "diff1_plain", + }, + }, + }, + } }, event = "VeryLazy", lazy = true, - config = function() - require("neogit").setup() - end + opts = {}, }