neovim/global: add ui/icons

This commit is contained in:
NotAShelf 2024-05-01 22:00:24 +03:00
parent 80d126ceef
commit 72f69aafc5
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{lib, ...}: let
inherit (lib.options) mkOption;
inherit (lib.types) str;
in {
options.vim.ui.icons = {
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";
};
};
}