2023-04-03 09:12:05 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-07 00:50:27 +00:00
|
|
|
}: let
|
2024-03-16 13:25:30 +00:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
2024-03-10 20:41:33 +00:00
|
|
|
inherit (lib.nvim.lua) toLuaObject;
|
2023-11-07 00:50:27 +00:00
|
|
|
|
2023-04-03 09:12:05 +00:00
|
|
|
cfg = config.vim.notify.nvim-notify;
|
|
|
|
in {
|
|
|
|
config = mkIf cfg.enable {
|
2024-03-16 13:25:30 +00:00
|
|
|
vim = {
|
|
|
|
startPlugins = ["nvim-notify"];
|
2024-03-10 20:41:33 +00:00
|
|
|
|
2024-07-20 08:30:48 +00:00
|
|
|
pluginRC.nvim-notify = entryAnywhere ''
|
2024-12-20 15:27:44 +00:00
|
|
|
local notify = require("notify")
|
|
|
|
notify.setup(${toLuaObject cfg.setupOpts})
|
2024-12-24 10:43:13 +00:00
|
|
|
vim.notify = notify.notify
|
2024-03-16 13:25:30 +00:00
|
|
|
'';
|
|
|
|
};
|
2023-04-03 09:12:05 +00:00
|
|
|
};
|
|
|
|
}
|