neovim/lua/plugins/lsp/schemastore.lua

13 lines
189 B
Lua

-- Install schemastore.nvim which provides schemas for
-- JSON and YAML.
-- Needed for jsonls LSP
return {
"b0o/schemastore.nvim",
lazy = true,
ft = {
"json",
"yaml",
}
}