Files
neovimrc/lsp/yamlls.lua
T
timmypidashev 843d1ca3a1 Initial rewrite
Signed-off-by: Timothy Pidashev <mail@timmypidashev.dev>
2026-04-16 01:16:58 -07:00

12 lines
316 B
Lua

return {
cmd = { "yaml-language-server", "--stdio" },
filetypes = { "yaml", "yaml.docker-compose", "yaml.gitlab" },
root_markers = { ".git" },
settings = {
yaml = {
keyOrdering = false,
schemaStore = { enable = true, url = "https://www.schemastore.org/api/json/catalog.json" },
},
},
}