From 311c317e0026398d6dd9d00cd61d8a5e4cd56742 Mon Sep 17 00:00:00 2001 From: Quinn Date: Tue, 3 Feb 2026 20:24:01 +0100 Subject: [PATCH] Use `shfmt` for `bash` instead of `sh`. Similar reason as previous commit; 3eeff04c9b4e5ff4b6332bf986b45906d2ca8521, use `shellcheck` for `bash` instead of `sh`. `sh` files get their filetype set to `bash`, for treesitter to function properly. --- .config/nvim/lua/plugin/conform.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugin/conform.lua b/.config/nvim/lua/plugin/conform.lua index 5aa89fc..0d1c16e 100644 --- a/.config/nvim/lua/plugin/conform.lua +++ b/.config/nvim/lua/plugin/conform.lua @@ -10,7 +10,7 @@ require('conform').setup({ typescript = { 'clang-format', lsp_format = "first" }, css = { 'clang-format' }, rust = { 'rustfmt' }, - sh = { 'shfmt' }, + bash = { 'shfmt' }, python = { 'isort' }, -- json = { 'jq' }, -- yaml = { 'yq' },