Add missing install commands for spell checkers
This commit is contained in:
parent
0c9256411d
commit
de94a7381c
1 changed files with 14 additions and 1 deletions
|
@ -65,6 +65,7 @@ with anything other than =aspell= yet.
|
||||||
|
|
||||||
** Aspell
|
** Aspell
|
||||||
+ Ubuntu: ~apt-get install aspell aspell-en~
|
+ Ubuntu: ~apt-get install aspell aspell-en~
|
||||||
|
+ macOS: ~brew install aspell~
|
||||||
+ Arch Linux: ~pacman -S aspell aspell-en~
|
+ Arch Linux: ~pacman -S aspell aspell-en~
|
||||||
+ NixOS:
|
+ NixOS:
|
||||||
#+BEGIN_SRC nix
|
#+BEGIN_SRC nix
|
||||||
|
@ -75,10 +76,22 @@ with anything other than =aspell= yet.
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+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
|
** Enchant
|
||||||
+ Ubuntu: ~apt-get install enchant-2~
|
+ Ubuntu: ~apt-get install enchant-2~
|
||||||
|
+ macOS: ~brew install enchant~
|
||||||
+ Arch Linux: ~pacman -S enchant~
|
+ Arch Linux: ~pacman -S enchant~
|
||||||
+ NixOS:
|
+ NixOS:
|
||||||
#+BEGIN_SRC nix
|
#+BEGIN_SRC nix
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue