From 57df48733fae937a99097f6a6fd9b247ce771f31 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Fri, 3 Jan 2025 01:52:16 +0100 Subject: [PATCH] chore(neovim): add shell formatter --- modules/home-manager/cli/neovim/files/conform.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/home-manager/cli/neovim/files/conform.lua b/modules/home-manager/cli/neovim/files/conform.lua index ff3d6d8..54ec4f6 100644 --- a/modules/home-manager/cli/neovim/files/conform.lua +++ b/modules/home-manager/cli/neovim/files/conform.lua @@ -6,6 +6,7 @@ require("conform").setup({ }, formatters_by_ft = { yaml = {"yamlfmt"}, + sh = { "shfmt" }, ["_"] = { "trim_whitespace" }, } })