about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorKasper Kondzielski <kghost0@gmail.com>2023-04-08 20:16:10 +0200
committerMatthieu Coudron <teto@users.noreply.github.com>2023-04-08 20:56:02 +0200
commit584278eface16359dec7839e001b80a7db7347d9 (patch)
tree810c46e55eba3410723b2f67018240b6fa9d4183 /pkgs/applications/editors
parent54731a8cea6d8b9d4fcb9ca7cbfc75ae1e07a171 (diff)
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
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/vim/plugins/overrides.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix
index e15d497a80ad4..c7a4b2fc96ec1 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: {