--- /dev/null
+return {
+ -- lspconfig
+ {
+ "neovim/nvim-lspconfig",
+ ---@class PluginLspOpts
+ --
+ init = function ()
+ local keys = require("lazyvim.plugins.lsp.keymaps").get()
+
+ -- TODO: setup a new mapping for this
+ -- { "gr", "<cmd>Telescope lsp_references<cr>", desc = "References" },
+ keys[#keys+1] = { "gr", false }
+ end,
+ }
+}