13 lines
189 B
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",
|
||
|
}
|
||
|
}
|