diff options
author | Cody Hiar <cody@hiar.ca> | 2022-01-20 16:02:11 -0700 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2022-01-20 16:02:11 -0700 |
commit | 3ad59d3ce27b29fd17f441fec84fa20abb580117 (patch) | |
tree | f3ca952b93d9482a15cc0349c754e24780e5eb42 | |
parent | 12f4bd12939b1faa7c6a5d2cda8d146ec4081031 (diff) |
Add python fixers/linters
-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 } |