neovim-flake/modules/plugins/ui/notifications/nvim-notify/nvim-notify.nix

66 lines
1.7 KiB
Nix
Raw Normal View History

2024-03-10 21:41:33 +01:00
{
config,
lib,
...
}: let
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.modules) mkRenamedOptionModule;
inherit (lib.types) int str enum attrsOf;
inherit (lib.nvim.types) mkPluginSetupOption;
in {
2024-03-10 21:41:33 +01: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 11:12:05 +02:00
options.vim.notify.nvim-notify = {
enable = mkEnableOption "nvim-notify notifications";
2024-03-10 21:41:33 +01:00
setupOpts = mkPluginSetupOption "nvim-notify" {
stages = mkOption {
type = enum ["fade_in_slide_out" "fade_in" "slide_out" "none"];
default = "fade_in_slide_out";
description = "The stages of the notification";
};
2024-03-10 21:41:33 +01:00
timeout = mkOption {
type = int;
default = 1000;
description = "The timeout of the notification";
};
2024-03-10 21:41:33 +01: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";
};
2024-03-10 21:41:33 +01:00
icons = mkOption {
type = attrsOf str;
description = "The icons of the notification";
default = {
ERROR = "";
WARN = "";
INFO = "";
DEBUG = "";
TRACE = "";
};
2023-04-03 11:12:05 +02:00
};
};
};
}