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

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