diff options
Diffstat (limited to '.emacs.local.d/modes/flycheck.el')
-rw-r--r-- | .emacs.local.d/modes/flycheck.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.emacs.local.d/modes/flycheck.el b/.emacs.local.d/modes/flycheck.el index 45571e2..6662c06 100644 --- a/.emacs.local.d/modes/flycheck.el +++ b/.emacs.local.d/modes/flycheck.el @@ -10,3 +10,11 @@ :modes (text-mode markdown-mode gfm-mode org-mode)) (add-to-list 'flycheck-checkers 'proselint) + +;; TODO: docker run --rm -p 8010:8010 erikvl87/languagetool +(use-package flycheck-languagetool + :ensure t + :hook (message-mode . flycheck-languagetool-setup) + :init + (setq flycheck-languagetool-url "http://localhost:8010") +) |