1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/lib/plugins/default.nix
Matt Sturgeon 896f6be694
lib/plugins: take ownership of modules utils
These util functions were previously defined in `modules`, but
`plugins.utils` is a better home.
2024-12-22 09:35:16 +00:00

13 lines
233 B
Nix

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