diff --git a/vim/plugins_config.vim b/vim/plugins_config.vim index 817cffb..299197f 100644 --- a/vim/plugins_config.vim +++ b/vim/plugins_config.vim @@ -25,7 +25,7 @@ let g:ale_fixers = { let g:ale_fixers_aliases = {'vue': ['vue', 'javascript']} let g:ale_python_bandit_options = "-c banditrc" -let g:ale_python_pylint_options = "--disable=W0511" +let g:ale_python_pylint_options = "-j0 --disable=W0511" " let g:ale_cpp_clang_options = '-std=c++17 -Wall -Wpedantic' " let g:ale_cpp_gcc_options = '-std=c++17 -Wall -Wpedantic' @@ -36,7 +36,7 @@ let g:ale_linters = { \ 'cpp': ['clangd'], \ 'python': ['pyls', 'pylint', 'bandit', 'mypy'], \ 'go': ['gopls', 'gobuild'], - \ 'rust': ['analyzer', 'rustc'], + \ 'rust': ['analyzer', 'cargo', 'rls'], \ 'yaml': ['yamllint'], \ 'javascript': ["yarn lint", "eslint", "vls"] \}