From c69fd34fabb9c61ec0615114c14bad2034fff095 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 4 Sep 2023 08:20:33 +0100 Subject: [PATCH] fix(nvim): disable key ordering check again --- lua/opdavies/lsp/init.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lua/opdavies/lsp/init.lua b/lua/opdavies/lsp/init.lua index 7533e3d..0cd1729 100644 --- a/lua/opdavies/lsp/init.lua +++ b/lua/opdavies/lsp/init.lua @@ -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)