1626fce1c9
* Enable the vale linter also for LaTeX * Enable the vale linter for rst files
10 lines
246 B
VimL
10 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',
|
|
\})
|