7c643a2d9c
Read more here: https://github.com/w0rp/ale
9 lines
246 B
VimL
9 lines
246 B
VimL
" Author: chew-z https://github.com/chew-z
|
|
" Description: vale for LaTeX files
|
|
|
|
call ale#linter#Define('tex', {
|
|
\ 'name': 'vale',
|
|
\ 'executable': 'vale',
|
|
\ 'command': 'vale --output=JSON %t',
|
|
\ 'callback': 'ale#handlers#vale#Handle',
|
|
\})
|