2023-04-03 11:12:05 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-07 01:50:27 +01:00
|
|
|
}: let
|
2024-03-16 14:25:30 +01:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
2024-03-10 21:41:33 +01:00
|
|
|
inherit (lib.nvim.lua) toLuaObject;
|
2023-11-07 01:50:27 +01:00
|
|
|
|
2023-04-03 11:12:05 +02:00
|
|
|
cfg = config.vim.notify.nvim-notify;
|
|
|
|
in {
|
|
|
|
config = mkIf cfg.enable {
|
2024-03-16 14:25:30 +01:00
|
|
|
vim = {
|
|
|
|
startPlugins = ["nvim-notify"];
|
2024-03-10 21:41:33 +01:00
|
|
|
|
2024-03-16 14:25:30 +01:00
|
|
|
luaConfigRC.nvim-notify = entryAnywhere ''
|
2024-03-10 21:41:33 +01:00
|
|
|
require('notify').setup(${toLuaObject cfg.setupOpts})
|
2023-07-13 22:22:16 +02:00
|
|
|
|
2024-03-16 14:25:30 +01:00
|
|
|
-- required to fix offset_encoding errors
|
|
|
|
local notify = vim.notify
|
|
|
|
vim.notify = function(msg, ...)
|
|
|
|
if msg:match("warning: multiple different client offset_encodings") then
|
|
|
|
return
|
|
|
|
end
|
2023-07-13 22:22:16 +02:00
|
|
|
|
2024-03-16 14:25:30 +01:00
|
|
|
notify(msg, ...)
|
|
|
|
end
|
|
|
|
'';
|
|
|
|
};
|
2023-04-03 11:12:05 +02:00
|
|
|
};
|
|
|
|
}
|