summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/lsp_lines.lua
blob: 5f8e05d5ff4922d7d94bdc67cb622310210df180 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
}