From 17a10cf6458f0628055223bf0208e92628dc3a43 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Wed, 23 Jul 2025 14:51:50 +0200 Subject: [PATCH] (neovim) configure shfmt options --- config/common/nvim/lua/plugins/conform.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 config/common/nvim/lua/plugins/conform.lua diff --git a/config/common/nvim/lua/plugins/conform.lua b/config/common/nvim/lua/plugins/conform.lua new file mode 100644 index 0000000..f690983 --- /dev/null +++ b/config/common/nvim/lua/plugins/conform.lua @@ -0,0 +1,10 @@ +return { + "stevearc/conform.nvim", + opts = { + formatters = { + shfmt = { + prepend_args = { "-i", "2", "-ci", "-bn" }, + }, + }, + }, +}