Add flycheck-vale (flycheck interface for vale prose linter)

This commit is contained in:
2022-06-05 22:21:58 +02:00
parent 6b908cb1dd
commit 2651b91b21

View File

@@ -72,12 +72,26 @@
:config :config
;; Make sure flycheck-pos-tip is loaded. ;; Make sure flycheck-pos-tip is loaded.
(require 'flycheck-pos-tip nil t)) (require 'flycheck-pos-tip nil t))
;; https://github.com/gexplorer/flycheck-indicator ;; https://github.com/gexplorer/flycheck-indicator
;; An Emacs minor-mode to get a fancy mode line indicator for Flycheck. ;; An Emacs minor-mode to get a fancy mode line indicator for Flycheck.
(use-package flycheck-indicator (use-package flycheck-indicator
:hook (flycheck-mode-hook . flycheck-indicator-mode)) :hook (flycheck-mode-hook . flycheck-indicator-mode))
;; https://github.com/yasuyk/helm-flycheck ;; https://github.com/yasuyk/helm-flycheck
;; Show flycheck errors with helm. ;; 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) (use-package helm-flycheck)
(global-flycheck-mode t)) (global-flycheck-mode t))