From de94a7381c1fc1dc0171e863070a52e9057db327 Mon Sep 17 00:00:00 2001 From: Matthieu Petiteau Date: Thu, 24 Dec 2020 16:48:26 +0100 Subject: [PATCH] Add missing install commands for spell checkers --- modules/checkers/spell/README.org | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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