Change lsplens icons
This commit is contained in:
parent
efbbf79de7
commit
916f839f86
2 changed files with 19 additions and 5 deletions
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue