dotfiles/config/lvim/ftplugin/python.lua
2021-09-11 15:59:44 +03:00

9 lines
154 B
Lua

lvim.format_on_save = true
lvim.lang.python.formatters = {
{ exe = "black" },
{ exe = "isort" },
}
lvim.lang.python.linters = {
{ exe = "flake8" },
}