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