diff options
-rw-r--r-- | init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -373,9 +373,11 @@ return require('packer').startup(function() config = function() vim.g.ale_linters = { sh = { "shellcheck", }, + python = { "black", "flake8", "isort" }, } vim.g.ale_fixers = { sh = { "shfmt", }, + python = { "isort", "black" }, } end } |