From 7bbb7d34a1912e67dd249ef099a175c0b071e5f3 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Mon, 26 Aug 2024 17:47:42 -0500 Subject: [PATCH] vimPlugins.lualine-nvim: add nvim-web-devicons dependency Listed as a requirement on their documentation https://github.com/nvim-lualine/lualine.nvim --- pkgs/applications/editors/vim/plugins/overrides.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index fe85fcf4b567a..9a0d63d42db62 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -1004,6 +1004,10 @@ dependencies = with self; [ plenary-nvim ]; }; + lualine-nvim = super.lualine-nvim.overrideAttrs { + dependencies = with self; [ nvim-web-devicons ]; + }; + luasnip = super.luasnip.overrideAttrs { dependencies = with self; [ luaPackages.jsregexp ]; };