From fac50221283cf3ec69b2a00cf28e9936078e9524 Mon Sep 17 00:00:00 2001 From: Deepak Mallubhotla Date: Thu, 25 Apr 2024 06:09:26 +0000 Subject: [PATCH] feat: actually adds spaceport.nix --- overlays/spaceport.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 overlays/spaceport.nix diff --git a/overlays/spaceport.nix b/overlays/spaceport.nix new file mode 100644 index 0000000..ef51530 --- /dev/null +++ b/overlays/spaceport.nix @@ -0,0 +1,15 @@ +{ spaceport-nvim }: +{ + overlay = final: prev: + let + spaceportNvimPlugin = prev.vimUtils.buildVimPlugin { + src = spaceport-nvim; + name = "spaceport-nvim"; + }; + in + { + customVimPlugins = { + spaceport-nvim = spaceportNvimPlugin; + }; + }; +}