mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 02:52:37 +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;
 | |
|       };
 | |
|     };
 | |
|   };
 | |
| }
 | 
