Change lsplens icons

This commit is contained in:
Fábio André Damas 2025-04-03 01:23:17 +01:00
parent efbbf79de7
commit 916f839f86
2 changed files with 19 additions and 5 deletions

View file

@ -1,5 +1,20 @@
return {
'VidocqH/lsp-lens.nvim',
opts = {}
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,
}
}
}