mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix langtool config for Linux
Fixes https://github.com/hlissner/doom-emacs/issues/2072. I have left the mac portion alone as I don't have a mac handy to test this.
This commit is contained in:
@ -8,15 +8,16 @@
|
|||||||
:init (setq langtool-default-language "en-US")
|
:init (setq langtool-default-language "en-US")
|
||||||
:config
|
:config
|
||||||
(unless (or langtool-bin
|
(unless (or langtool-bin
|
||||||
langtool-language-tool-jar)
|
langtool-language-tool-jar
|
||||||
(setq langtool-language-tool-jar
|
langtool-java-classpath)
|
||||||
(cond (IS-MAC
|
(cond (IS-MAC
|
||||||
|
(setq langtool-language-tool-jar
|
||||||
(locate-file "libexec/languagetool-commandline.jar"
|
(locate-file "libexec/languagetool-commandline.jar"
|
||||||
(doom-files-in "/usr/local/Cellar/languagetool"
|
(doom-files-in "/usr/local/Cellar/languagetool"
|
||||||
:type 'dirs
|
:type 'dirs
|
||||||
:depth 2)))
|
:depth 2))))
|
||||||
(IS-LINUX
|
(IS-LINUX
|
||||||
"/usr/share/java/languagetool/languagetool-commandline.jar")))))
|
(setq langtool-java-classpath "/usr/share/languagetool:/usr/share/java/languagetool/*")))))
|
||||||
|
|
||||||
|
|
||||||
;; Detects weasel words, passive voice and duplicates. Proselint would be a
|
;; Detects weasel words, passive voice and duplicates. Proselint would be a
|
||||||
|
Reference in New Issue
Block a user