Fix cargo fmt

This commit is contained in:
~erin 2023-03-31 10:21:37 -04:00
parent f54a272e99
commit c87628ce0e
Signed by: erin
GPG Key ID: 9A8E308CEFA37A47
1 changed files with 1 additions and 1 deletions

View File

@ -13,5 +13,5 @@ local cargo_on_save = vim.api.nvim_create_augroup('cargo_on_save', {
vim.api.nvim_create_autocmd('BufWritePost', {
pattern = '*.rs',
group = 'cargo_on_save',
command = 'silent! !cargo fmt <afile>',
command = 'silent! !cargo fmt',
})