mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-11-04 04:32:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  config,
 | 
						|
  lib,
 | 
						|
  ...
 | 
						|
}: let
 | 
						|
  cfg = config.vim.assistant.supermaven-nvim;
 | 
						|
in {
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
    vim.lazy.plugins = {
 | 
						|
      supermaven-nvim = {
 | 
						|
        package = "supermaven-nvim";
 | 
						|
        setupModule = "supermaven-nvim";
 | 
						|
        inherit (cfg) setupOpts;
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |