my neovim config, who would've thought
at main 303 B view raw
1---@return vim.lsp.Config 2return { 3 cmd = { "vscode-json-language-server", "--stdio" }, 4 filetypes = { "json", "jsonc" }, 5 init_options = { provideFormatter = true }, 6 settings = { 7 json = { 8 schemas = require("schemastore").json.schemas(), 9 validate = { enable = true }, 10 }, 11 }, 12}