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