Add fixers for ALE in .vimrc

This commit is contained in:
daniele 2024-12-15 10:44:11 +01:00
parent 1d2f8c3fec
commit a952d718d8
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514

8
.vimrc
View File

@ -38,6 +38,14 @@ let g:ale_linters={'python': ['pylint'], 'c': ['cc'], 'sh': ['shell'], 'tex': ['
let g:ale_linters_explicit=1
let g:ale_enabled=1
let g:ale_python_pylint_options='--max-line-length=160 --disable=missing-docstring --disable=invalid-name'
let g:ale_fixers = {
\ 'haskell': ['ormolu', 'remove_trailing_lines', 'trim_whitespace'],
\ 'c': ['astyle', 'remove_trailing_lines', 'trim_whitespace'],
\ 'python': ['autopep8', 'remove_trailing_lines', 'trim_whitespace']
\}
let g:ale_haskell_ormolu_options = '--no-cabal --no-dot-ormolu'
" let g:everforest_background='hard'
" let g:everforest_better_performance=1
let g:tokyonight_style='storm'