nix-community.nixvim/lib/plugins/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
297 B
Nix
Raw Normal View History

{ lib }:
let
self = lib.nixvim.plugins;
call = lib.callPackageWith (self // { inherit call lib self; });
in
{
utils = call ./utils.nix { };
neovim = call ./neovim.nix { };
vim = call ./vim.nix { };
# Aliases
inherit (self.neovim) mkNeovimPlugin;
inherit (self.vim) mkVimPlugin;
}