From 348a4dd2127a4ab34bb645932589881362515c57 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Tue, 30 Apr 2024 20:49:46 +0200 Subject: [PATCH] fix: allow auto formatter Signed-off-by: kjuulh --- dot_config/helix/languages.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dot_config/helix/languages.toml b/dot_config/helix/languages.toml index 74c3179..76cab00 100644 --- a/dot_config/helix/languages.toml +++ b/dot_config/helix/languages.toml @@ -32,7 +32,8 @@ args = ["server", "-m", "stream"] [[language]] name = "toml" -formatter = { command = "taplo", args = ["fmt"] } +formatter = { command = "taplo", args = ["fmt", "-"] } +auto-format = true [[grammar]] name = "graphql"