vim.api.nvim_create_autocmd( { "BufWritePre" }, {
pattern = { "*.py", "*.pyi" },
command = [[ :silent! %!/usr/bin/env isort -q - ]],
})