Neovim/lua/plugins/lens.lua

19 lines
558 B
Lua
Raw Permalink Normal View History

2024-05-12 17:38:26 +00:00
return {
{
"VidocqH/lsp-lens.nvim",
config = function()
2024-06-06 12:05:09 +00:00
vim.api.nvim_set_hl(0, 'LspLens', { link = 'NonText', default = true })
2024-05-12 17:38:26 +00:00
require("lsp-lens").setup({
enable = true,
sections = {
definition = false,
references = true,
implements = true,
git_authors = true,
},
})
2024-06-06 12:05:09 +00:00
vim.api.nvim_set_hl(0, 'LspLens', { link = 'NonText', default = true })
2024-05-12 17:38:26 +00:00
end,
},
}