2025-02-13 11:40:42 -08:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
|
|
options.nixvim-config = {
|
|
|
|
enable = lib.mkEnableOption "Enable nixvim-config";
|
2025-02-16 14:22:27 -08:00
|
|
|
|
2025-02-17 20:15:55 -08:00
|
|
|
enable-ai = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Enable ai plugins";
|
|
|
|
};
|
|
|
|
|
2025-02-23 23:12:00 -08:00
|
|
|
enable-startify-cowsay = lib.mkOption {
|
2025-02-16 14:22:27 -08:00
|
|
|
type = lib.types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Enable startify";
|
|
|
|
};
|
2025-02-13 11:40:42 -08:00
|
|
|
};
|
|
|
|
}
|