From 5c6a84d7087d6a9c584c7a3f723efc16ee78504c Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Sun, 16 Nov 2025 18:32:36 +0100 Subject: [PATCH] helix: Use deno formatter for JSON too --- users/pedro/home-configuration/helix.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/users/pedro/home-configuration/helix.nix b/users/pedro/home-configuration/helix.nix index 0565666..1847d2b 100644 --- a/users/pedro/home-configuration/helix.nix +++ b/users/pedro/home-configuration/helix.nix @@ -43,9 +43,11 @@ { name = "json"; formatter = { - command = "${pkgs.nodePackages.prettier}/bin/prettier"; + command = "${pkgs.deno}/bin/deno"; args = [ - "--parser" + "fmt" + "-" + "--ext" "json" ]; };