mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
17 lines
282 B
Lua
17 lines
282 B
Lua
|
local opts = {
|
||
|
settings = {
|
||
|
yaml = {
|
||
|
hover = true,
|
||
|
completion = true,
|
||
|
validate = true,
|
||
|
schemaStore = {
|
||
|
enable = true,
|
||
|
url = "https://www.schemastore.org/api/json/catalog.json",
|
||
|
},
|
||
|
schemas = require("schemastore").yaml.schemas(),
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
return opts
|