From 754c29cb7c06b6b611b1b81e7ffcf354eb801054 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Wed, 1 May 2024 22:00:24 +0300 Subject: [PATCH] neovim/global: add ui/icons --- modules/neovim/global/ui/icons.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 modules/neovim/global/ui/icons.nix diff --git a/modules/neovim/global/ui/icons.nix b/modules/neovim/global/ui/icons.nix new file mode 100644 index 0000000..76c1e3c --- /dev/null +++ b/modules/neovim/global/ui/icons.nix @@ -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"; + }; + }; +}