nixvim/plugins/common/options.nix
Lander Van den Bulcke 55860985f8
wip
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-10-10 14:02:21 +02:00

26 lines
454 B
Nix

{ 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";
};
};
}