English is a programming language, fight me
This commit is contained in:
parent
eac22be095
commit
55756e4ae7
9 changed files with 165 additions and 62 deletions
|
@ -4,6 +4,7 @@
|
|||
./common.nix
|
||||
./go.nix
|
||||
./node.nix
|
||||
./prose.nix
|
||||
./python.nix
|
||||
];
|
||||
}
|
||||
|
|
23
hm/dev/prose.nix
Normal file
23
hm/dev/prose.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Prose is a programming language, fight me
|
||||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
config = lib.mkIf config.frogeye.dev.prose {
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
hunspell
|
||||
hunspellDicts.en_GB-ize
|
||||
hunspellDicts.en_US
|
||||
hunspellDicts.fr-moderne
|
||||
hunspellDicts.nl_NL
|
||||
# TODO libreoffice-extension-languagetool or libreoffice-extension-grammalecte-fr
|
||||
];
|
||||
};
|
||||
programs.nixvim.plugins.none-ls = {
|
||||
enable = true;
|
||||
sources = {
|
||||
code_actions.ltrs.enable = true;
|
||||
diagnostics.ltrs.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue