feat(nvim): define default zsh formatter as shfmt for formatter.nvim

This commit is contained in:
Price Hiller 2023-12-26 16:56:11 -06:00
parent 42dc2d822c
commit 05fd071b42
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -35,6 +35,15 @@ return {
},
}
end,
zsh = function()
return {
exe = "shfmt",
args = {
"-"
},
stdin = true
}
end,
asm = function()
return {
exe = "asmfmt",