fix(nvim): disable key ordering check again

This commit is contained in:
Oliver Davies 2023-09-04 08:20:33 +01:00
parent b66a8bb3d2
commit 62765d25aa

View file

@ -77,7 +77,6 @@ local servers = {
tailwindcss = true,
tsserver = true,
vuels = true,
yamlls = true,
intelephense = {
filetypes = { "php", "module", "test", "inc" },
@ -92,6 +91,14 @@ local servers = {
},
},
},
yamlls = {
settings = {
yaml = {
keyOrdering = false,
}
}
}
}
local setup_server = function(server, config)