blob: b257de51dac11661211e6ab857cf274c765f4fe4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
return { 'whynothugo/lsp_lines.nvim',
url = 'https://git.sr.ht/~whynothugo/lsp_lines.nvim',
requires = 'neovim/nvim-lspconfig',
function()
require('lsp_lines').setup()
vim.diagnostic.config {
virtual_lines = {
highlight_whole_line = false,
only_current_line = true
}
}
end
}
|