{ lib, ... }:
{
  options.nixvim-config = {
    enable = lib.mkEnableOption "Enable nixvim-config";

    enable-ai = lib.mkOption {
      type = lib.types.bool;
      default = false;
      description = "Enable ai plugins";
    };

    enable-startify-cowsay = lib.mkOption {
      type = lib.types.bool;
      default = false;
      description = "Enable startify";
    };
  };
}