From b0429569acef58058ba4810662a334a2e56ecd63 Mon Sep 17 00:00:00 2001 From: JohnCoene Date: Thu, 9 Nov 2023 15:31:16 +0100 Subject: [PATCH] fix: do not hardcode style, use config file --- lua/conform/formatters/styler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/conform/formatters/styler.lua b/lua/conform/formatters/styler.lua index e33cb958..e31a22e6 100644 --- a/lua/conform/formatters/styler.lua +++ b/lua/conform/formatters/styler.lua @@ -6,6 +6,6 @@ return { description = "R formatter and linter.", }, command = util.find_executable({"usr/bin/"}, "R"), - args = {"-s", "-e", "r.nvim::format()", "--args", "$FILENAME", "grk"}, + args = {"-s", "-e", "r.nvim::format()", "--args", "$FILENAME"}, stdin = false, }