Files
dotfiles-modules/homemanager/neovim/lua/plugins/spec/server_configurations/yaml.lua
2025-10-14 12:29:46 +02:00

15 lines
382 B
Lua

return {
cmd = { "yaml-language-server", "--stdio" },
settings = {
yaml = {
schemas = {
["https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json"] =
"compose.yaml",
["https://raw.githubusercontent.com/SchemaStore/schemastore/refs/heads/master/src/schemas/json/github-workflow.json"] = "**/.github/workflows/*"
}
}
}
}