diff --git a/vim/plugins_config.vim b/vim/plugins_config.vim index 68f4e7c..a5fa716 100644 --- a/vim/plugins_config.vim +++ b/vim/plugins_config.vim @@ -31,7 +31,7 @@ let g:ale_python_mypy_options = "--ignore-missing-imports" " let g:ale_cpp_clang_options = '-std=c++17 -Wall -Wpedantic' " let g:ale_cpp_gcc_options = '-std=c++17 -Wall -Wpedantic' -let g:ale_rust_rustfmt_options = '--edition=2018' +let g:ale_rust_cargo_use_clippy = 1 let g:ale_linters = { \ 'bash': ['bash-language-server', 'bashlint', "shellcheck"], @@ -40,7 +40,7 @@ let g:ale_linters = { \ 'cpp': ['clangd'], \ 'python': ['pylsp', 'pylint', 'bandit', "mypy"], \ 'go': ['gopls', 'gobuild'], - \ 'rust': ['analyzer', 'cargo', 'rls'], + \ 'rust': ['analyzer'], \ 'yaml': ['yamllint'], \ 'javascript': ["yarn lint", "eslint", "vls"] \}