diff options
author | Raul Benencia <raul@thousandeyes.com> | 2023-11-25 07:51:52 -0800 |
---|---|---|
committer | Raul Benencia <raul@thousandeyes.com> | 2023-11-25 07:51:52 -0800 |
commit | 11b4efac6b4318706042c6ac44879a5df0432e31 (patch) | |
tree | 985c039ccf859b03315e249a236152d5b78fbf86 /.emacs.d/rul-init.d/flycheck.el | |
parent | 4474d95a01f5ea991530aa0bb15e1636013405a3 (diff) |
emacs: minor bootstrap fixes
Diffstat (limited to '.emacs.d/rul-init.d/flycheck.el')
-rw-r--r-- | .emacs.d/rul-init.d/flycheck.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.emacs.d/rul-init.d/flycheck.el b/.emacs.d/rul-init.d/flycheck.el index 6662c06..006081e 100644 --- a/.emacs.d/rul-init.d/flycheck.el +++ b/.emacs.d/rul-init.d/flycheck.el @@ -1,4 +1,6 @@ -;; Debian-packages: elpa-flycheck python3-proselint +(use-package flycheck + :ensure t + :config (flycheck-define-checker proselint "A linter for prose." @@ -17,4 +19,4 @@ :hook (message-mode . flycheck-languagetool-setup) :init (setq flycheck-languagetool-url "http://localhost:8010") -) +)) |