From b7c597b0e9da3d870f0c0c175097c5bfe01f4b47 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Tue, 7 Jan 2025 10:26:52 +0100 Subject: [PATCH] fix(fugitive): specify horizontal diff --- lua/plugins/fugitive.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/fugitive.lua b/lua/plugins/fugitive.lua index 14ef192..5458278 100644 --- a/lua/plugins/fugitive.lua +++ b/lua/plugins/fugitive.lua @@ -13,7 +13,7 @@ return { event = "VeryLazy", ---@type LazyKeysSpec[] keys = { - { "gd", vim.cmd.Ghdiffsplit, mode = "n" }, + { "gd", vim.cmd.Gvdiffsplit, mode = "n" }, { "gc", function() vim.cmd.G("commit") end, mode = "n" }, { "ga", function() vim.cmd.G("commit --amend") end, mode = "n" }, { "gp", function() vim.cmd.G("push") end, mode = "n" },