feat(nvim): add asm formatter to formatter.nvim

This commit is contained in:
Price Hiller 2023-09-05 22:03:09 -05:00
parent d4dec5390d
commit 4c62a22fdd
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -25,6 +25,12 @@ return {
markdown = filetypes.markdown.prettierd,
css = filetypes.css.prettierd,
lua = filetypes.lua.stylua,
asm = function()
return {
exe = "asmfmt",
stdin = true
}
end
},
}
end,