Files
dotfiles/nvim/after/lsp/yamlls.lua
FaultyBranches 28649d7907 fix: Actually fixing the yaml-companion setup. Testing needs to continue
with verifying schemaStore will work from fresh install.
2026-06-04 18:29:06 -05:00

32 lines
803 B
Lua

return {
settings = {
redhat = { telemetry = { enabled = false } },
yaml = {
customTags = {
"!fn",
"!And",
"!If",
"!Not",
"!Equals",
"!Or",
"!FindInMap sequence",
"!Base64",
"!Cidr",
"!Ref",
"!Ref Scalar",
"!Sub",
"!GetAtt",
"!GetAZs",
"!ImportValue",
"!Select",
"!Split",
"!Join sequence"
},
format = { enable = true, singleQuote = true },
hover = true,
schemaStore = { enable = true },
validate = true,
}
}
}