From 3916efbcc95d8a8029f0e52ed71e36ed1a190ded Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Wed, 5 Nov 2025 13:54:17 +0100 Subject: [PATCH] chore: disable yaml prettier and enable singleQuote As requested by $customer, sigh... Signed-off-by: Lander Van den Bulcke --- plugins/lang/yaml.nix | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/plugins/lang/yaml.nix b/plugins/lang/yaml.nix index 7626a63..7ef6a8d 100644 --- a/plugins/lang/yaml.nix +++ b/plugins/lang/yaml.nix @@ -5,6 +5,7 @@ enable = true; settings.yaml = { + format.singleQuote = true; schemas = { kubernetes = "'*.yaml"; "http://json.schemastore.org/github-workflow" = ".github/workflows/*"; @@ -22,15 +23,5 @@ }; }; }; - - conform-nvim.settings = { - formatters_by_ft = { - yaml = { - __unkeyed-1 = "prettierd"; - __unkeyed-2 = "prettier"; - stop_after_first = true; - }; - }; - }; }; }