mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
10 lines
261 B
VimL
10 lines
261 B
VimL
" Author: poohzrn https://github.com/poohzrn
|
|
" Description: proselint for TeX files
|
|
|
|
call ale#linter#Define('tex', {
|
|
\ 'name': 'proselint',
|
|
\ 'executable': 'proselint',
|
|
\ 'command': 'proselint %t',
|
|
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
|
|
\})
|