/eglot-ltex

Eglot Clients for LTEX

Primary LanguageEmacs LispGNU General Public License v3.0GPL-3.0

License: GPL v3 JCS-ELPA

eglot-ltex

Eglot Clients for LTEX

CI

Eglot client leveraging LTEX Language Server.

💾 Quickstart

🔍 Step 1. Install LTEX language server through LTEX's homepage

Link https://github.com/valentjn/ltex-ls

Extract the .tar.gz file to any location you want.

🔍 Step 2. Configure your Emacs configuration

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/"))

🔧 Configuration

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.

Contribute

PRs Welcome Elisp styleguide Donate on paypal Become a patron

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!