blob: 44e0a5abfe103f26d6727a8ed8ffcbe54791cbd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
vim.lsp.enable({
"marksman",
"intelephense",
"lua_ls",
})
vim.diagnostic.config({
virtual_text = {
-- Show diagnostics at the end of the line.
prefix = "●",
spacing = 0,
source = true,
},
virtual_lines = false,
})
|