Add fixer for markdown to trim trailing whitespace

This commit is contained in:
ViViDboarder 2019-10-24 16:22:46 -07:00
parent e9bd22b73c
commit 1e7156d172
1 changed files with 1 additions and 0 deletions

View File

@ -70,6 +70,7 @@ elseif has('nvim') || v:version >= 800
let g:ale_fixers = { let g:ale_fixers = {
\ 'go': ['gofmt', 'goimports'], \ 'go': ['gofmt', 'goimports'],
\ 'rust': ['rustfmt'], \ 'rust': ['rustfmt'],
\ 'markdown': ['trim_whitespace'],
\} \}
" Auto-complete from ALE, possible alternative to asyncomplete " Auto-complete from ALE, possible alternative to asyncomplete