From 584278eface16359dec7839e001b80a7db7347d9 Mon Sep 17 00:00:00 2001 From: Kasper Kondzielski Date: Sat, 8 Apr 2023 20:16:10 +0200 Subject: [PATCH] noice-nvim: Remove nvim-notify from noice-nvim dependencies *!This will change behavior for the end user of noice as they will have to add notify plugin manually!* Notify plugin is no longer a hard dependency for noice plugin and there is no need to ship noice with it. In addition to that some plugins will perform auto discovery of plugins that are on the runtime path and in case they find notify they might want to use it. There is no easy way to remove nvim-notify from the runtime path without doing an override. https://github.com/folke/noice.nvim#%EF%B8%8F-requirements --- pkgs/applications/editors/vim/plugins/overrides.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index e15d497a80ad..c7a4b2fc96ec 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -706,7 +706,7 @@ self: super: { }); noice-nvim = super.noice-nvim.overrideAttrs(old: { - dependencies = with self; [ nui-nvim nvim-notify ]; + dependencies = with self; [ nui-nvim ]; }); null-ls-nvim = super.null-ls-nvim.overrideAttrs (old: {