mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-11-04 12:42:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			462 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			462 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  config,
 | 
						|
  lib,
 | 
						|
  ...
 | 
						|
}: let
 | 
						|
  inherit (lib.modules) mkIf;
 | 
						|
  inherit (lib.nvim.dag) entryAnywhere;
 | 
						|
  inherit (lib.nvim.lua) toLuaObject;
 | 
						|
 | 
						|
  cfg = config.vim.notify.nvim-notify;
 | 
						|
in {
 | 
						|
  config = mkIf cfg.enable {
 | 
						|
    vim = {
 | 
						|
      startPlugins = ["nvim-notify"];
 | 
						|
 | 
						|
      pluginRC.nvim-notify = entryAnywhere ''
 | 
						|
        local notify = require("notify")
 | 
						|
        notify.setup(${toLuaObject cfg.setupOpts})
 | 
						|
        vim.notify = notify.notify
 | 
						|
      '';
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |