From ba9f6855de9470f3ca7d728b6ca00917b3a2982c Mon Sep 17 00:00:00 2001 From: jolheiser Date: Sat, 19 Aug 2023 22:30:34 -0500 Subject: [PATCH] chore: remove jsonnet and add luafmt Signed-off-by: jolheiser --- apps/helix.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/apps/helix.nix b/apps/helix.nix index d7696a2..8d58588 100644 --- a/apps/helix.nix +++ b/apps/helix.nix @@ -151,20 +151,19 @@ }; languages = { language = [ - { - name = "jsonnet"; - auto-format = true; - formatter = { - command = "jsonnetfmt"; - args = ["-"]; - }; - } { name = "go"; formatter = { command = "gofumpt"; }; } + { + name = "lua"; + formatter = { + command = "luafmt"; + args = ["--stdin"]; + }; + } { name = "python"; auto-format = true;