20 lines
594 B
Lua
20 lines
594 B
Lua
return {
|
|
'VidocqH/lsp-lens.nvim',
|
|
|
|
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,
|
|
}
|
|
}
|
|
}
|