@joey
Downloaded the binary, and it 'just' worked!
The emacs integration, however, has not been without pain. I've ended up defining a flycheck checker!
```
(flycheck-define-checker ltex-plus
"A linter for ltex-plus https://github.com/ltex-plus/ltex-ls-plus"
:command ("~/opt/ltex-ls-plus-18.4.0/bin/ltex-cli-plus"
source-inplace)
:error-patterns
((info line-start (file-name) ":" line ":" column ": info:"
(message (one-or-more not-newline)
(zero-or-more "\n" (any " ") (one-or-more not-newline)))
line-end))
((warning line-start (file-name) ":" line ":" column ": "
(message (one-or-more not-newline)
(zero-or-more "\n" (any " ") (one-or-more not-newline)))
line-end))
:modes (LaTeX-mode markdown-mode org-mode)
)
(add-to-list 'flycheck-checkers 'ltex-plus)
```