dotfiles/.config/nvim/lua/plugins/extras/lsp/lens.lua
Sergio Laín c2e92f0ef5
♻️ refactor(nvim): a lot of changes to the structure of the config
moved extras, mason and tressitter packages, and some new extras for web dev
2023-11-15 12:46:38 +01:00

19 lines
411 B
Lua

return {
"VidocqH/lsp-lens.nvim",
event = "BufReadPost",
opts = {
sections = {
definition = false,
references = function(count)
return " Ref: " .. count
end,
implements = function(count)
return "󱁤 Imp: " .. count
end,
git_authors = false,
},
},
keys = {
{ "<leader>ue", "<cmd>LspLensToggle<cr>", desc = "Toggle Lsp Lens" },
},
}