diff options
Diffstat (limited to 'nvim-primeagen/after/plugin/ale.lua')
-rw-r--r-- | nvim-primeagen/after/plugin/ale.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nvim-primeagen/after/plugin/ale.lua b/nvim-primeagen/after/plugin/ale.lua index 5575f9f..b3b5c0d 100644 --- a/nvim-primeagen/after/plugin/ale.lua +++ b/nvim-primeagen/after/plugin/ale.lua @@ -1,6 +1,6 @@ -- Set the configuration options for the plugin local linters = { - python = {'ruff', 'flake8'}, + python = {'ruff', 'flake8', 'pyright'}, ocaml = {'merlin'}, cpp = {'clang'}, yaml = {'yamllint'}, @@ -9,7 +9,7 @@ local linters = { } local fixers = { - python = {'ruff', 'isort', 'yapf', 'black', 'pyright'}, + python = {'ruff', 'isort', 'yapf', 'black', 'autoimport'}, go = {'gofmt'}, rust = {'rustfmt'}, } |