mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:20:04 +08:00
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',
|
|
\})
|