nix-config/home/modules/nvim/config/lsp/jsonls.lua
2025-04-10 00:19:09 +02:00

15 lines
343 B
Lua

return {
cmd = { "vscode-json-language-server", "--stdio" },
filetypes = { "json", "jsonc" },
init_options = {
provideFormatter = true,
},
root_markers = { ".git" },
single_file_support = true,
settings = {
json = {
schemas = require("schemastore").json.schemas(),
validate = { enable = true },
},
},
}