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;