1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-31 19:29:49 +01:00
neovim-flake/modules/plugins/spellcheck/vim-dirtytalk/vim-dirtytalk.nix

8 lines
217 B
Nix
Raw Normal View History

{lib, ...}: let
inherit (lib.options) mkEnableOption;
in {
options.vim.spellcheck.vim-dirtytalk = {
enable = mkEnableOption "vim-dirtytalk, a wordlist for programmers, that includes programming words";
};
}