From 63e987277e823a50bf96665b8d3207c4808651d6 Mon Sep 17 00:00:00 2001 From: foxora Date: Sun, 15 Mar 2026 22:02:43 +0000 Subject: [PATCH] can now preview hunks inline!!! :3 --- homes/modules/programs/neovim/lua/plugins/git.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homes/modules/programs/neovim/lua/plugins/git.lua b/homes/modules/programs/neovim/lua/plugins/git.lua index 5ce4395..46ee0e2 100644 --- a/homes/modules/programs/neovim/lua/plugins/git.lua +++ b/homes/modules/programs/neovim/lua/plugins/git.lua @@ -84,6 +84,8 @@ return { vim.keymap.set("n", "hU", gitsigns.reset_buffer_index) vim.keymap.set("n", "hi", gitsigns.toggle_current_line_blame) + + vim.keymap.set("n", "hp", gitsigns.preview_hunk_inline) end, }) end,