Skip to content

Commit

Permalink
fix(natural-langs): fallback to spell-fu on Windows [#147]
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Dec 28, 2023
1 parent 58198b8 commit 9e91a1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/me-natural-langs.el
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

(use-package jinx
:straight t
:when (+emacs-features-p 'modules)
:when (and (or os/linux os/bsd os/mac) (+emacs-features-p 'modules))
:hook (text-mode . jinx-mode)
:init
(+map! "ts" #'jinx-mode)
(+nvmap! "z=" #'jinx-correct))

(unless (+emacs-features-p 'modules)
(unless (or os/win (+emacs-features-p 'modules))
(+load minemacs-modules-dir "obsolete/me-spell-fu.el"))

(use-package go-translate
Expand Down

0 comments on commit 9e91a1e

Please sign in to comment.