diff options
author | Matthew Lemon <y@yulqen.org> | 2023-08-12 15:15:53 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-08-12 15:15:53 +0100 |
commit | 6f9408206d53d9b0b2fd43e0f7e91157773f0b9d (patch) | |
tree | 288fdfa3ac23e2712bdd097b9669eed22432a369 /nvim-primeagen/after/plugin/ale.lua | |
parent | 51dad503f84263739a4441c3c5c8ad9d4102a683 (diff) |
Better config for neovim
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'}, } |