blob: dcda0476f737e0121313294c332c3cdcf5685bbc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local status_ok, lines = pcall(require, "lsp_lines")
if not status_ok then
return
end
lines.setup {}
vim.diagnostic.config {
virtual_lines = {
highlight_whole_line = true,
only_current_line = true
}
}
|