{ lib, ... }: with lib; { options.nixvim = { leader = mkOption { description = "The leader key for nvim."; type = types.str; default = " "; }; border = mkOption { description = "The border style for nvim."; type = types.enum [ "single" "double" "rounded" "solid" "shadow" "curved" "bold" "none" ]; default = "rounded"; }; }; }