mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-12 18:24:35 +02:00
20 lines
377 B
Nix
20 lines
377 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; {
|
|
options = {
|
|
colorscheme = mkOption {
|
|
type = types.nullOr types.str;
|
|
description = "The name of the colorscheme to use";
|
|
default = null;
|
|
};
|
|
};
|
|
|
|
config = {
|
|
extraConfigVim = optionalString (config.colorscheme != "" && config.colorscheme != null) ''
|
|
colorscheme ${config.colorscheme}
|
|
'';
|
|
};
|
|
}
|