mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 19:12:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   config,
 | |
|   lib,
 | |
|   ...
 | |
| }: let
 | |
|   inherit (lib.modules) mkIf;
 | |
|   inherit (lib.nvim.dag) entryAnywhere;
 | |
|   inherit (lib.nvim.lua) toLuaObject;
 | |
| 
 | |
|   cfg = config.vim.mini.sessions;
 | |
| in {
 | |
|   vim = mkIf cfg.enable {
 | |
|     startPlugins = ["mini-sessions"];
 | |
| 
 | |
|     pluginRC.mini-sessions = entryAnywhere ''
 | |
|       require("mini.sessions").setup(${toLuaObject cfg.setupOpts})
 | |
|     '';
 | |
|   };
 | |
| }
 | 
