🎨 ux(nvim): nerd fonts icons for lsp lens

This commit is contained in:
Sergio Laín 2023-10-29 23:50:02 +01:00
parent 8bbc2050a8
commit 723d261b13
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -166,7 +166,18 @@ return {
{
"VidocqH/lsp-lens.nvim",
event = "BufReadPost",
opts = {},
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" },
},