Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
26 lines
454 B
Nix
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";
|
|
};
|
|
};
|
|
}
|