nvim/lua/config/plugins/lsp/servers/jsonls.lua
2024-12-21 12:38:40 -03:00

16 lines
283 B
Lua

return {
settings = {
json = {
schemas = require("schemastore").json.schemas(),
},
},
setup = {
commands = {
Format = {
function()
vim.lsp.buf.range_formatting({}, { 0, 0 }, { vim.fn.line("$"), 0 })
end,
},
},
},
}