14 lines
427 B
Lua
14 lines
427 B
Lua
return {
|
|
cmd = { "yaml-language-server", "--stdio" },
|
|
filetypes = { "yaml" },
|
|
settings = {
|
|
yaml = {
|
|
schemas = {
|
|
kubernetes = "*.yaml",
|
|
["http://json.schemastore.org/github-workflow"] = ".github/workflows/*",
|
|
["http://json.schemastore.org/github-action"] = ".github/action.{yml,yaml}",
|
|
["http://json.schemastore.org/prettierrc"] = ".prettierrc.{yml,yaml}",
|
|
},
|
|
},
|
|
},
|
|
}
|