English is a programming language, fight me

This commit is contained in:
Geoffrey Frogeye 2024-01-19 22:50:01 +01:00
parent eac22be095
commit 55756e4ae7
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
9 changed files with 165 additions and 62 deletions

View file

@ -4,6 +4,7 @@
./common.nix
./go.nix
./node.nix
./prose.nix
./python.nix
];
}

23
hm/dev/prose.nix Normal file
View 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;
};
};
};
}