summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lsp/jsonls.lua
blob: 234cc945c8bc77c4180796ca3892c00548f0497b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
return {
	cmd = { 'vscode-json-language-server', '--stdio' },
	filetypes = { 'json', 'jsonc' },
	init_options = {
		provideFormatter = true,
	},
	root_marker = {},
	single_file_support = true,
}