Diffview auto-refresh, yank file path key bindings

This commit is contained in:
2026-02-13 00:21:41 -05:00
parent ccebe78d4e
commit 7a00a8d47b
7 changed files with 289 additions and 21 deletions

9
lua/plugins/yank.lua Normal file
View File

@@ -0,0 +1,9 @@
-- Load custom yank keymaps for copying file paths + visual selections
-- See lua/custom/yank.lua for implementation
return {
dir = vim.fn.stdpath("config"),
name = "custom-yank",
config = function()
require("custom.yank")
end,
}