This commit is contained in:
2025-02-06 17:45:39 +02:00
commit a3f3abb460
84 changed files with 5567 additions and 0 deletions

15
config/utils/plenary.nix Normal file
View File

@ -0,0 +1,15 @@
{
lib,
config,
pkgs,
...
}: {
options = {
plenary.enable = lib.mkEnableOption "Enable plenary module";
};
config = lib.mkIf config.plenary.enable {
extraPlugins = with pkgs.vimPlugins; [
plenary-nvim
];
};
}