2023-02-01 20:11:37 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-07 01:50:27 +01:00
|
|
|
}: let
|
2024-03-12 01:47:12 +01:00
|
|
|
inherit (lib.options) mkOption;
|
|
|
|
inherit (lib.attrsets) attrNames;
|
|
|
|
inherit (lib.types) bool lines enum;
|
|
|
|
inherit (lib.modules) mkIf;
|
2024-07-20 10:30:48 +02:00
|
|
|
inherit (lib.nvim.dag) entryAfter;
|
2023-11-07 01:50:27 +01:00
|
|
|
|
2023-02-01 20:11:37 +01:00
|
|
|
cfg = config.vim.theme;
|
2024-07-20 10:30:48 +02:00
|
|
|
supportedThemes = import ./supported-themes.nix {
|
2024-05-23 15:51:05 +02:00
|
|
|
inherit lib config;
|
|
|
|
};
|
2023-02-01 20:11:37 +01:00
|
|
|
in {
|
|
|
|
options.vim.theme = {
|
|
|
|
enable = mkOption {
|
2024-03-12 01:47:12 +01:00
|
|
|
type = bool;
|
2023-04-02 18:58:57 +02:00
|
|
|
description = "Enable theming";
|
2023-02-01 20:11:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
name = mkOption {
|
2024-07-20 10:30:48 +02:00
|
|
|
type = enum (attrNames supportedThemes);
|
|
|
|
description = "Supported themes can be found in `supportedThemes.nix`";
|
2023-02-01 20:11:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
style = mkOption {
|
2024-07-20 10:30:48 +02:00
|
|
|
type = enum supportedThemes.${cfg.name}.styles;
|
2023-02-01 20:11:37 +01:00
|
|
|
description = "Specific style for theme if it supports it";
|
|
|
|
};
|
|
|
|
|
2023-04-11 12:57:47 +02:00
|
|
|
transparent = mkOption {
|
2024-03-12 01:47:12 +01:00
|
|
|
type = bool;
|
2023-04-11 12:57:47 +02:00
|
|
|
default = false;
|
|
|
|
description = "Whether or not transparency should be enabled. Has no effect for themes that do not support transparency";
|
|
|
|
};
|
|
|
|
|
2023-02-01 20:11:37 +01:00
|
|
|
extraConfig = mkOption {
|
2024-03-12 01:47:12 +01:00
|
|
|
type = lines;
|
2023-02-01 20:11:37 +01:00
|
|
|
description = "Additional lua configuration to add before setup";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2024-03-12 01:47:12 +01:00
|
|
|
vim = {
|
|
|
|
startPlugins = [cfg.name];
|
2024-07-20 10:30:48 +02:00
|
|
|
luaConfigRC.theme = entryAfter ["basic"] ''
|
2024-06-14 11:17:06 +02:00
|
|
|
${cfg.extraConfig}
|
2024-07-20 10:30:48 +02:00
|
|
|
${supportedThemes.${cfg.name}.setup {inherit (cfg) style transparent;}}
|
2024-06-14 11:17:06 +02:00
|
|
|
'';
|
2024-03-12 01:47:12 +01:00
|
|
|
};
|
2023-02-01 20:11:37 +01:00
|
|
|
};
|
|
|
|
}
|