summaryrefslogtreecommitdiffstats
path: root/after/plugin/lsplines.lua
blob: 25cee837157bfbf5538a898258b15923b9eab779 (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 = false,
    only_current_line = true
  }
}