From 10330f4e8fba3884859d41b391fec6124c425acb Mon Sep 17 00:00:00 2001 From: Binciu Viorel Date: Sun, 26 May 2024 11:39:54 +0300 Subject: [PATCH] feat: Added references --- lua/plugins/refrences.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lua/plugins/refrences.lua diff --git a/lua/plugins/refrences.lua b/lua/plugins/refrences.lua new file mode 100644 index 0000000..76f214c --- /dev/null +++ b/lua/plugins/refrences.lua @@ -0,0 +1,15 @@ +-- Code references plugins + +return { + { + "wiliamks/nice-reference.nvim", + dependencies = { + { + "rmagatti/goto-preview", + config = function() + require("goto-preview").setup({}) + end, + }, + }, + }, +}