13 lines
290 B
Lua
13 lines
290 B
Lua
return { 'whynothugo/lsp_lines.nvim',
|
|
url = 'https://git.sr.ht/~whynothugo/lsp_lines.nvim',
|
|
requires = 'neovim/nvim-lspconfig',
|
|
function()
|
|
vim.diagnostic.config {
|
|
virtual_lines = {
|
|
highlight_whole_line = false,
|
|
only_current_line = true
|
|
}
|
|
}
|
|
end
|
|
}
|