Eglot Clients for LTEX
Eglot
client leveraging LTEX Language Server.
Extract the .tar.gz
file to any location you want.
Consider adding this to your configuration.
(use-package eglot-ltex
:ensure t
:hook (text-mode . (lambda ()
(require 'eglot-ltex)
(eglot-ensure)))
:init
(setq eglot-languagetool-server-path "path/to/ltex-ls-XX.X.X/"))
Create .dir-locals.el
file in the project root directory to configure the ltex
language server, for example:
((nil .
((eglot-workspace-configuration
. (:ltex-ls (:language "en-US"
:additionalRules (:motherTongue "de-DE")))))))
You can find all possible ltex configuration options here. See the Eglot manual on how to translate the LSP options into the property-list format that Eglot requires.
If you would like to contribute to this project, you may either clone and make pull requests to this repository. Or you can clone the project and establish your own branch of this tool. Any methods are welcome!