Files
dotfiles/nvim/after/lsp/yamlls.lua
FaultyBranches dd63dfd57e fix: Removing several bits that were superfluous or were causing issues.
Disabling nvim-lint and calls to cfn-lint for now. Found and removed the issue with
completion causing odd failures on expansion.
2026-04-07 08:03:21 -05:00

34 lines
774 B
Lua

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