BREAKING CHANGE: This deprecates the IS-(MAC|WINDOWS|LINUX|BSD) family of global constants in favor of a native `featurep` check: IS-MAC -> (featurep :system 'macos) IS-WINDOWS -> (featurep :system 'windows) IS-LINUX -> (featurep :system 'linux) IS-BSD -> (featurep :system 'bsd) The constants will stick around until the v3 release so folks can still use it -- and there are still some modules that use it, but I'll phase those uses out gradually. Fix: #7479
40 lines
1.7 KiB
EmacsLisp
40 lines
1.7 KiB
EmacsLisp
;;; checkers/grammar/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! langtool
|
|
:commands (langtool-check
|
|
langtool-check-done
|
|
langtool-show-message-at-point
|
|
langtool-correct-buffer)
|
|
:init (setq langtool-default-language "en-US")
|
|
:config
|
|
(unless (or langtool-bin
|
|
langtool-language-tool-jar
|
|
langtool-java-classpath)
|
|
(cond ((setq langtool-bin
|
|
(or (executable-find "languagetool-commandline")
|
|
(executable-find "languagetool")))) ; for nixpkgs.languagetool
|
|
((featurep :system 'macos)
|
|
(cond
|
|
;; is user using home brew?
|
|
((file-directory-p "/usr/local/Cellar/languagetool")
|
|
(setq langtool-language-tool-jar
|
|
(locate-file "libexec/languagetool-commandline.jar"
|
|
(doom-files-in "/usr/local/Cellar/languagetool"
|
|
:type 'dirs
|
|
:depth 2))))
|
|
;; macports compatibility
|
|
((file-directory-p "/opt/local/share/java/LanguageTool")
|
|
(setq langtool-java-classpath "/opt/local/share/java/LanguageTool/*"))))
|
|
((featurep :system 'linux)
|
|
(setq langtool-java-classpath "/usr/share/languagetool:/usr/share/java/languagetool/*")))))
|
|
|
|
|
|
;; Detects weasel words, passive voice and duplicates. Proselint would be a
|
|
;; better choice.
|
|
(use-package! writegood-mode
|
|
:hook (org-mode markdown-mode rst-mode asciidoc-mode latex-mode LaTeX-mode)
|
|
:config
|
|
(map! :localleader
|
|
:map writegood-mode-map
|
|
"g" #'writegood-grade-level
|
|
"r" #'writegood-reading-ease))
|