Add missing install commands for spell checkers

This commit is contained in:
Matthieu Petiteau 2020-12-24 16:48:26 +01:00
parent 0c9256411d
commit de94a7381c

View file

@ -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