mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 20:41:04 +00:00
15 lines
247 B
Lua
15 lines
247 B
Lua
-- Code references plugins
|
|
|
|
return {
|
|
{
|
|
"wiliamks/nice-reference.nvim",
|
|
dependencies = {
|
|
{
|
|
"rmagatti/goto-preview",
|
|
config = function()
|
|
require("goto-preview").setup({})
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
}
|