about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-06-30 14:38:56 -0400
committerGitHub <noreply@github.com>2023-06-30 14:38:56 -0400
commitcda1d30f9cdb2e474b863cb028983f37ac1981d4 (patch)
tree14cf2c7f683c8eea7d18fc4d74e7b0c48fc56b17 /pkgs
parent05b84a2b837d772b6c2b1218f7e6df91fe4dd7f0 (diff)
parent087005737917978dea67287757ce2afbbbaef48d (diff)
Merge pull request #240761 from teto/alpha-nvim-test
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/editors/vim/plugins/overrides.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix
index 6481f76f5ef4b..0b2afc81f4d5f 100644
--- a/pkgs/applications/editors/vim/plugins/overrides.nix
+++ b/pkgs/applications/editors/vim/plugins/overrides.nix
@@ -128,6 +128,12 @@
 }:
 
 self: super: {
+  alpha-nvim = super.alpha-nvim.overrideAttrs(oa: {
+    dependencies = [
+      self.nvim-web-devicons # required by the startify theme
+    ];
+    nvimRequireCheck = "alpha";
+  });
 
   autosave-nvim = super.autosave-nvim.overrideAttrs(old: {
     dependencies = with super; [ plenary-nvim ];