summaryrefslogtreecommitdiff
path: root/nvim/lua/config/lsp.lua
blob: 95a077175f7bc9781dc971b7a2c2e4afacc4c3d9 (plain)
1
2
3
4
5
6
7
8
9
10
-- requires json language service - npm i -g vscode-langservers-extracted
vim.lsp.enable('jsonls')
vim.lsp.config('jsonls', {
	settings = {
		json = {
			schemas = require('schemastore').json.schemas(),
			validate = { enable = true },
		},
	},
})