summaryrefslogtreecommitdiff
path: root/nvim/.config/nvim/lua/config/lsp.lua
blob: 4fa1759a6a3325c9925a66f2e7a2dad67a2a2d85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
vim.lsp.enable({
  'intelephense',
  'lua_ls',
})

vim.diagnostic.config({
  virtual_text = {
    -- Show diagnostics at the end of the line.
    prefix = '●',
    spacing = 0,
    source = true,
  },
  virtual_lines = false,
})