🎨 ux(nvim): nerd fonts icons for lsp lens
This commit is contained in:
parent
8bbc2050a8
commit
723d261b13
1 changed files with 12 additions and 1 deletions
|
@ -166,7 +166,18 @@ return {
|
||||||
{
|
{
|
||||||
"VidocqH/lsp-lens.nvim",
|
"VidocqH/lsp-lens.nvim",
|
||||||
event = "BufReadPost",
|
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 = {
|
keys = {
|
||||||
{ "<leader>ue", "<cmd>LspLensToggle<cr>", desc = "Toggle Lsp Lens" },
|
{ "<leader>ue", "<cmd>LspLensToggle<cr>", desc = "Toggle Lsp Lens" },
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue