nvim/lua/config/isort.lua

5 lines
140 B
Lua
Raw Normal View History

2024-06-08 01:17:42 +02:00
vim.api.nvim_create_autocmd( { "BufWritePre" }, {
2024-05-23 08:33:22 +02:00
pattern = { "*.py", "*.pyi" },
2024-06-08 01:17:42 +02:00
command = [[ :silent! %!/usr/bin/env isort -q - ]],
2024-05-23 08:33:22 +02:00
})