summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/lsp.lua
blob: 4e0624c7769fb214d132c68343769a72684f8230 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local lsp = vim.lsp

--[[
lsp.handlers["textDocument/publishDiagnostics"] = lsp.with(
  lsp.diagnostic.on_publish_diagnostics,
  {
    underline = false,
    virtual_text = {
      prefix = "▒ ",
      spacing = 8,
    },
    signs = true,
  }
)
--]]
remember that computers suck.