diff options
author | mhsn <mail@mhsn.net> | 2025-04-23 10:08:46 +0000 |
---|---|---|
committer | mhsn <mail@mhsn.net> | 2025-04-23 10:08:46 +0000 |
commit | 3e5af33ee669f48582592ed5ae221a6f6ece239c (patch) | |
tree | 9a22f647ebab8b0c9abffd2ba8094f5f2e3dfa53 | |
parent | 42dcd7f8acd4c8249ef843257c541f9d43431c89 (diff) | |
download | nvim-3e5af33ee669f48582592ed5ae221a6f6ece239c.tar.gz nvim-3e5af33ee669f48582592ed5ae221a6f6ece239c.zip |
add shfmt formatter
-rw-r--r-- | lua/plugins/conform.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/plugins/conform.lua b/lua/plugins/conform.lua index 7b7cd46..1352ba0 100644 --- a/lua/plugins/conform.lua +++ b/lua/plugins/conform.lua @@ -5,6 +5,7 @@ return { formatters_by_ft = { lua = { "stylua" }, python = { "ruff_fix", "ruff_format", "ruff_organize_imports" }, + sh = { "shfmt" } }, format_on_save = { timeout_ms = 500, lsp_format = "fallback" }, }, |