dotfiles/nvim/dot-config/nvim/lua/plugins/schemastore.lua
2025-05-26 14:31:38 +02:00

14 lines
227 B
Lua

return {
"b0o/schemastore.nvim",
config = function()
vim.lsp.config("jsonls", {
settings = {
json = {
validate = { enable = true },
schemas = require("schemastore").json.schemas(),
},
},
})
end
}