/eglot-grammarly

Eglot Clients for Grammarly

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

License: GPL v3 JCS-ELPA

eglot-grammarly

CI

eglot client leveraging grammarly-language-server.

💾 Quickstart

🔍 Step 1. Install Grammarly language server through NPM

First, install the language server using NPM.

npm install -g @emacs-grammarly/grammarly-languageserver

🔍 Step 2. Configure your Emacs configuration

Consider adding this to your configuration.

(use-package eglot-grammarly
  :ensure t
  :hook (text-mode . (lambda ()
                       (require 'eglot-grammarly)
                       (call-interactively #'eglot))))

If you use straight.el, you can also get this package directly from github.

(use-package eglot-grammarly
  :straight (:host github :repo "emacs-grammarly/eglot-grammarly")
  :defer t  ; defer package loading
  :hook ((text-mode markdown-mode). (lambda ()
                                      (require 'eglot-grammarly)
                                      (eglot-ensure))))

🔧 Configuration

Create .dir-locals.el file in the the project root directory.

((nil
  (eglot-workspace-configuration
   . ((@emacs-grammarly/grammarly-languageserver
       . ((audience . "knowledgeable")))))))

P.S. See all possible configuration here.

Contribute

PRs Welcome Elisp styleguide

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!