lsp-lens.nvim
lsp-lens.nvim copied to clipboard
Add a dividing line
If it's possible to add a dividing line along with the text
like:
This is kind of possible atm by adjusting the default highlight to use underlining, e.g.
{
"VidocqH/lsp-lens.nvim",
config = function()
require 'lsp-lens'.setup({})
vim.api.nvim_set_hl(0, "LspLens", { underline = true })
end
}
If you want to combine the underline highlight with your comment highlight (the default for lsp-lens), you can implement that by getting the comment fg highlight and combining it with underline = true