i have plugins for now, i need sleep
This commit is contained in:
parent
4e2e019d92
commit
3a524bc43d
|
@ -419,4 +419,52 @@ M.ui = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
M.goto_preview = {
|
||||||
|
plugin = true,
|
||||||
|
n = {
|
||||||
|
["gpd"] = {
|
||||||
|
function()
|
||||||
|
require("goto-preview").goto_preview_definition()
|
||||||
|
end,
|
||||||
|
"go to definition preview",
|
||||||
|
noremap = true,
|
||||||
|
},
|
||||||
|
["gpD"] = {
|
||||||
|
function()
|
||||||
|
require("goto-preview").goto_preview_declaration()
|
||||||
|
end,
|
||||||
|
"go to declaration preview",
|
||||||
|
noremap = true,
|
||||||
|
},
|
||||||
|
["gpi"] = {
|
||||||
|
function()
|
||||||
|
require("goto-preview").goto_preview_implementation()
|
||||||
|
end,
|
||||||
|
"go to implementation preview",
|
||||||
|
noremap = true,
|
||||||
|
},
|
||||||
|
["gpt"] = {
|
||||||
|
function()
|
||||||
|
require("goto-preview").goto_preview_type_definition()
|
||||||
|
end,
|
||||||
|
"go to type preview",
|
||||||
|
noremap = true,
|
||||||
|
},
|
||||||
|
["gpr"] = {
|
||||||
|
function()
|
||||||
|
require("goto-preview").goto_preview_type_references()
|
||||||
|
end,
|
||||||
|
"go to references preview",
|
||||||
|
noremap = true,
|
||||||
|
},
|
||||||
|
["gpc"] = {
|
||||||
|
function()
|
||||||
|
require("goto-preview").close_all_win()
|
||||||
|
end,
|
||||||
|
"close previews",
|
||||||
|
noremap = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
@ -443,6 +443,21 @@ local plugins = {
|
||||||
"Bekaboo/deadcolumn.nvim",
|
"Bekaboo/deadcolumn.nvim",
|
||||||
event = { "BufReadPre", "BufNewFile" },
|
event = { "BufReadPre", "BufNewFile" },
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"rmagatti/goto-preview",
|
||||||
|
event = "FileType",
|
||||||
|
config = function()
|
||||||
|
require("core.utils").load_mappings "goto_preview"
|
||||||
|
require("goto-preview").setup {}
|
||||||
|
end,
|
||||||
|
dependencies = "nvim-telescope/telescope.nvim",
|
||||||
|
opts = {
|
||||||
|
width = 78,
|
||||||
|
height = 15,
|
||||||
|
default_mappings = false,
|
||||||
|
opacity = 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
return plugins
|
return plugins
|
||||||
|
|
Loading…
Reference in New Issue