2024-05-01 21:00:24 +02:00
|
|
|
{lib, ...}: let
|
|
|
|
inherit (lib.options) mkOption;
|
|
|
|
inherit (lib.types) str;
|
|
|
|
in {
|
|
|
|
options.vim.ui.icons = {
|
2024-05-17 18:03:05 +02:00
|
|
|
diagnostics = {
|
|
|
|
ERROR = mkOption {
|
|
|
|
type = str;
|
|
|
|
default = " ";
|
|
|
|
description = "The icon to use for error messages";
|
|
|
|
};
|
2024-05-01 21:00:24 +02:00
|
|
|
|
2024-05-17 18:03:05 +02:00
|
|
|
WARN = mkOption {
|
|
|
|
type = str;
|
|
|
|
default = " ";
|
|
|
|
description = "The icon to use for warning messages";
|
|
|
|
};
|
2024-05-01 21:00:24 +02:00
|
|
|
|
2024-05-17 18:03:05 +02:00
|
|
|
INFO = mkOption {
|
|
|
|
type = str;
|
|
|
|
default = " ";
|
|
|
|
description = "The icon to use for info messages";
|
|
|
|
};
|
2024-05-01 21:00:24 +02:00
|
|
|
|
2024-05-17 18:03:05 +02:00
|
|
|
HINT = mkOption {
|
|
|
|
type = str;
|
|
|
|
default = " ";
|
|
|
|
description = "The icon to use for hint messages";
|
|
|
|
};
|
2024-05-01 21:00:24 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|