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

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