mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-15 06:35:58 +01:00
32 lines
703 B
Nix
32 lines
703 B
Nix
{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";
|
|
};
|
|
|
|
WARN = mkOption {
|
|
type = str;
|
|
default = " ";
|
|
description = "The icon to use for warning messages";
|
|
};
|
|
|
|
INFO = mkOption {
|
|
type = str;
|
|
default = " ";
|
|
description = "The icon to use for info messages";
|
|
};
|
|
|
|
HINT = mkOption {
|
|
type = str;
|
|
default = " ";
|
|
description = "The icon to use for hint messages";
|
|
};
|
|
};
|
|
};
|
|
}
|