feat: gets spaceport working

This commit is contained in:
2024-04-25 07:03:55 +00:00
parent 2b72486a25
commit 7da08209cb
8 changed files with 44 additions and 29 deletions

View File

@@ -1,15 +0,0 @@
{ cmp-vimtex }:
{
overlay = final: prev:
let
cmpVimtexPlugin = prev.vimUtils.buildVimPlugin {
src = cmp-vimtex;
name = "cmp-vimtex";
};
in
{
customVimPlugins = {
cmp-vimtex = cmpVimtexPlugin;
};
};
}

View File

@@ -1,7 +1,11 @@
{ spaceport-nvim }:
{ cmp-vimtex, spaceport-nvim }:
{
overlay = final: prev:
let
cmpVimtexPlugin = prev.vimUtils.buildVimPlugin {
src = cmp-vimtex;
name = "cmp-vimtex";
};
spaceportNvimPlugin = prev.vimUtils.buildVimPlugin {
src = spaceport-nvim;
name = "spaceport-nvim";
@@ -9,6 +13,7 @@
in
{
customVimPlugins = {
cmp-vimtex = cmpVimtexPlugin;
spaceport-nvim = spaceportNvimPlugin;
};
};