Enable pylsp for ale

This commit is contained in:
2026-03-25 00:37:16 -05:00
parent 55e771d232
commit 96e5f4763a

View File

@@ -30,6 +30,10 @@ set foldmethod=syntax
set nofoldenable " Fuck autofolding set nofoldenable " Fuck autofolding
" ALE " ALE
let g:ale_completion_enabled = 1
let g:ale_linters = {
\ 'python': ['pylsp'],
\}
let g:ale_fixers = { let g:ale_fixers = {
\ '*': ['remove_trailing_lines', 'trim_whitespace'], \ '*': ['remove_trailing_lines', 'trim_whitespace'],
\ 'python': ['black', 'isort'], \ 'python': ['black', 'isort'],