mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-11-04 04:32:21 +00:00 
			
		
		
		
	neovim/global: add ui/icons
This commit is contained in:
		
					parent
					
						
							
								0e84e4ebed
							
						
					
				
			
			
				commit
				
					
						754c29cb7c
					
				
			
		
					 1 changed files with 30 additions and 0 deletions
				
			
		
							
								
								
									
										30
									
								
								modules/neovim/global/ui/icons.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								modules/neovim/global/ui/icons.nix
									
										
									
									
									
										Normal 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";
 | 
			
		||||
    };
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue