blob: 5307c090450461a97a0a697c3300d7bb21d2a25a (
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
}
}
|