From 2651b91b219b01c5bceeb3bc31c445eca0411310 Mon Sep 17 00:00:00 2001 From: Adrien Date: Sun, 5 Jun 2022 22:21:58 +0200 Subject: [PATCH] Add flycheck-vale (flycheck interface for vale prose linter) --- lisp/utilities/flycheck.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lisp/utilities/flycheck.el b/lisp/utilities/flycheck.el index 4eb0f96..1d63ba6 100644 --- a/lisp/utilities/flycheck.el +++ b/lisp/utilities/flycheck.el @@ -72,12 +72,26 @@ :config ;; Make sure flycheck-pos-tip is loaded. (require 'flycheck-pos-tip nil t)) + ;; https://github.com/gexplorer/flycheck-indicator ;; An Emacs minor-mode to get a fancy mode line indicator for Flycheck. + (use-package flycheck-indicator :hook (flycheck-mode-hook . flycheck-indicator-mode)) ;; https://github.com/yasuyk/helm-flycheck ;; Show flycheck errors with helm. + + ;; https://github.com/abingham/flycheck-vale + ;; Flycheck integration for the vale natural language linter. + (use-package flycheck-vale + :ensure t + :quelpa(flycheck-vale + :fetcher git + :url "http://git.adrien.run/Adrien/flycheck-vale.git") + :config + (setq flycheck-vale-config-file "~/dev/perso/vale-config/.vale.ini") + (flycheck-vale-setup)) + (use-package helm-flycheck) (global-flycheck-mode t))