diff --git a/modules/checkers/spell/README.org b/modules/checkers/spell/README.org index 93fb7e483..408570acf 100644 --- a/modules/checkers/spell/README.org +++ b/modules/checkers/spell/README.org @@ -65,6 +65,7 @@ with anything other than =aspell= yet. ** Aspell + Ubuntu: ~apt-get install aspell aspell-en~ ++ macOS: ~brew install aspell~ + Arch Linux: ~pacman -S aspell aspell-en~ + NixOS: #+BEGIN_SRC nix @@ -75,10 +76,22 @@ with anything other than =aspell= yet. } #+END_SRC -** TODO Hunspell +** Hunspell ++ Ubuntu: ~apt-get install hunspell~ ++ macOS: ~brew install hunspell~ ++ Arch Linux: ~pacman -S hunspell~ ++ NixOS: + #+BEGIN_SRC nix + { + environment.systemPackages = with pkgs; [ + hunspell + ]; + } + #+END_SRC ** Enchant + Ubuntu: ~apt-get install enchant-2~ ++ macOS: ~brew install enchant~ + Arch Linux: ~pacman -S enchant~ + NixOS: #+BEGIN_SRC nix