From a952d718d83dfd8739afce42ef30976103828383 Mon Sep 17 00:00:00 2001 From: Daniele Fucini Date: Sun, 15 Dec 2024 10:44:11 +0100 Subject: [PATCH] Add fixers for ALE in .vimrc --- .vimrc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vimrc b/.vimrc index 45a0f58..b6a0143 100644 --- a/.vimrc +++ b/.vimrc @@ -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'