getting stuff ready for flake to see

This commit is contained in:
2024-04-24 03:51:38 +00:00
parent 48d0d64349
commit 822bc0394e
7 changed files with 87 additions and 22 deletions

15
overlays/cmp-vimtex.nix Normal file
View File

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