nvf/modules/neovim/global/ui/icons.nix

33 lines
703 B
Nix
Raw Normal View History

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