mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 09:18:38 +02:00
These util functions were previously defined in `modules`, but `plugins.utils` is a better home.
13 lines
233 B
Nix
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;
|
|
}
|