nvim/lua/plugs/yaml.lua

12 lines
297 B
Lua
Raw Normal View History

2023-12-19 12:02:11 +08:00
return {
settings = {
yaml = {
schemas = {
["https://json.schemastore.org/github-workflow.json"] = "/.github/workflows/*",
["../path/relative/to/file.yml"] = "/.github/workflows/*",
["/path/from/root/of/project"] = "/.github/workflows/*",
},
},
}
}