2024-04-26 21:21:27 +00:00
|
|
|
{lib, ...}: let
|
2024-03-10 20:41:33 +00:00
|
|
|
inherit (lib.options) mkEnableOption mkOption;
|
|
|
|
inherit (lib.modules) mkRenamedOptionModule;
|
2024-04-26 21:21:27 +00:00
|
|
|
inherit (lib.types) int str enum attrsOf either;
|
|
|
|
inherit (lib.nvim.types) mkPluginSetupOption luaInline;
|
2023-11-07 00:50:27 +00:00
|
|
|
in {
|
2024-03-10 20:41:33 +00:00
|
|
|
imports = let
|
|
|
|
renamedSetupOpt = name:
|
|
|
|
mkRenamedOptionModule
|
|
|
|
["vim" "notify" "nvim-notify" name]
|
|
|
|
["vim" "notify" "nvim-notify" "setupOpts" name];
|
|
|
|
in [
|
|
|
|
(renamedSetupOpt "stages")
|
|
|
|
(renamedSetupOpt "timeout")
|
|
|
|
(renamedSetupOpt "background_colour")
|
|
|
|
(renamedSetupOpt "position")
|
|
|
|
(renamedSetupOpt "icons")
|
|
|
|
];
|
|
|
|
|
2023-04-03 09:12:05 +00:00
|
|
|
options.vim.notify.nvim-notify = {
|
2023-06-05 20:10:25 +00:00
|
|
|
enable = mkEnableOption "nvim-notify notifications";
|
|
|
|
|
2024-03-10 20:41:33 +00:00
|
|
|
setupOpts = mkPluginSetupOption "nvim-notify" {
|
2024-04-26 21:21:27 +00:00
|
|
|
render = mkOption {
|
|
|
|
type = either (enum ["default" "minimal" "simple" "compact" "wrapped-compact"]) luaInline;
|
|
|
|
default = "compact";
|
|
|
|
description = "Custom rendering method to be used for displaying notifications";
|
|
|
|
};
|
|
|
|
|
2024-03-10 20:41:33 +00:00
|
|
|
stages = mkOption {
|
|
|
|
type = enum ["fade_in_slide_out" "fade_in" "slide_out" "none"];
|
|
|
|
default = "fade_in_slide_out";
|
|
|
|
description = "The stages of the notification";
|
|
|
|
};
|
2023-06-05 20:10:25 +00:00
|
|
|
|
2024-03-10 20:41:33 +00:00
|
|
|
timeout = mkOption {
|
|
|
|
type = int;
|
|
|
|
default = 1000;
|
|
|
|
description = "The timeout of the notification";
|
|
|
|
};
|
2023-06-05 20:10:25 +00:00
|
|
|
|
2024-03-10 20:41:33 +00:00
|
|
|
background_colour = mkOption {
|
|
|
|
type = str;
|
|
|
|
default = "#000000";
|
|
|
|
description = "The background colour of the notification";
|
|
|
|
};
|
|
|
|
|
|
|
|
position = mkOption {
|
|
|
|
type = enum ["top_left" "top_right" "bottom_left" "bottom_right"];
|
|
|
|
default = "top_right";
|
|
|
|
description = "The position of the notification";
|
|
|
|
};
|
2023-06-05 20:10:25 +00:00
|
|
|
|
2024-03-10 20:41:33 +00:00
|
|
|
icons = mkOption {
|
|
|
|
type = attrsOf str;
|
|
|
|
description = "The icons of the notification";
|
|
|
|
default = {
|
|
|
|
ERROR = "";
|
|
|
|
WARN = "";
|
|
|
|
INFO = "";
|
|
|
|
DEBUG = "";
|
2024-04-26 21:21:27 +00:00
|
|
|
TRACE = "";
|
2024-03-10 20:41:33 +00:00
|
|
|
};
|
2023-04-03 09:12:05 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|