nvim-config11/lua/plugins/lsp-lens.nvim.lua

21 lines
594 B
Lua
Raw Normal View History

return {
'VidocqH/lsp-lens.nvim',
2025-04-03 01:23:17 +01:00
opts = {
sections = {
definition = function(count)
return "󰀫 Definitions: " .. count
end,
references = function(count)
return "󰈇 References: " .. count
end,
implements = function(count)
return " Implements: " .. count
end,
git_authors = function(latest_author, count)
return "" .. latest_author .. (count - 1 == 0 and "" or (" + " .. count - 1))
end,
}
}
}