4 lines
136 B
Lua
4 lines
136 B
Lua
vim.api.nvim_create_autocmd( { "BufWritePost" }, {
|
|
pattern = { "*.py", "*.pyi" },
|
|
command = [[ :silent! !/usr/bin/isort -q % ]],
|
|
})
|