mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
22 lines
808 B
Nix
22 lines
808 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
_nixvimTests,
|
|
...
|
|
}: let
|
|
nixvimTypes = import ./types.nix {inherit lib nixvimOptions;};
|
|
nixvimUtils = import ./utils.nix {inherit lib _nixvimTests;};
|
|
nixvimOptions = import ./options.nix {inherit lib nixvimTypes nixvimUtils;};
|
|
inherit (import ./to-lua.nix {inherit lib;}) toLuaObject;
|
|
in
|
|
{
|
|
maintainers = import ./maintainers.nix;
|
|
keymaps = import ./keymap-helpers.nix {inherit lib nixvimOptions nixvimTypes;};
|
|
autocmd = import ./autocmd-helpers.nix {inherit lib nixvimOptions nixvimTypes;};
|
|
neovim-plugin = import ./neovim-plugin.nix {inherit lib nixvimOptions nixvimUtils toLuaObject;};
|
|
vim-plugin = import ./vim-plugin.nix {inherit lib nixvimOptions nixvimUtils;};
|
|
inherit nixvimTypes;
|
|
inherit toLuaObject;
|
|
}
|
|
// nixvimUtils
|
|
// nixvimOptions
|