dev: automated commit - 2025-05-28 14:17:15

This commit is contained in:
Mariano Z. 2025-05-28 14:17:15 -03:00
parent cc9b3f716e
commit a2d2fcb86e
9 changed files with 69 additions and 93 deletions

16
lsp/jsonls.lua Normal file
View file

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