update nvim

This commit is contained in:
kYasuda
2026-08-31 13:48:36 -07:00
parent 67afa82778
commit 17086f43ec
59 changed files with 860 additions and 1798 deletions
+26 -1
View File
@@ -1 +1,26 @@
return { "rmagatti/goto-preview" }
return {
"rmagatti/goto-preview",
keys = {
{
"gpc",
function()
require("goto-preview").close_all_win()
end,
desc = "Close preview windows",
},
{
"gpd",
function()
require("goto-preview").goto_preview_definition()
end,
desc = "Preview definition",
},
{
"gpi",
function()
require("goto-preview").goto_preview_implementation()
end,
desc = "Preview implementation",
},
},
}