mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-15 23:45:58 +01:00
a0197fe1bb
The "new" DAG order is as follows: - (luaConfigPre) - globalsScript - basic - theme - pluginConfigs - extraPluginConfigs - mappings - (luaConfigPost)
31 lines
678 B
Nix
31 lines
678 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 ''
|
|
require('notify').setup(${toLuaObject cfg.setupOpts})
|
|
|
|
-- 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
|
|
|
|
notify(msg, ...)
|
|
end
|
|
'';
|
|
};
|
|
};
|
|
}
|